{% import 'components/forum/activity-item.html' as forum_activity_item %}
Displaying 10 out of 5,234 discussions

General

All non-course topics.

add
{% set activity = [{ avatar: 'assets/images/people/50/guy-1.jpg', name: 'Luci Bryant', title: 'Am I learning the right way?', date: '5 min ago' }, { avatar: 'assets/images/people/50/guy-2.jpg', name: 'Magnus Goldsmith', title: 'Can someone help me with the basic Setup?', date: '7 min ago' }, { avatar: 'assets/images/people/50/woman-1.jpg', name: 'Katelyn Rankin', title: 'I think this is the right way?', date: '12 min ago' }] %}
    {% for item in activity %} {{ forum_activity_item.component(item=item, prefix=prefix) }} {% endfor %}

Lessons

Course related topics.

add
{% set activity = [{ avatar: "assets/images/256_rsz_nicolas-horn-689011-unsplash.jpg", name: "Jenell D. Matney", title: 'Getting around AngularJS', date: '1 min ago' }, { avatar: "assets/images/256_rsz_sharina-mae-agellon-377466-unsplash.jpg", name: "Sherri J. Cardenas", title: 'Responsive Bootstrap Question', date: '3 min ago' }, { avatar: "assets/images/256_rsz_karl-s-973833-unsplash.jpg", name: "Joseph S. Ferland", title: 'Can someone help me with the basic Setup?', date: '10 min ago' }] %}
    {% for item in activity %} {{ forum_activity_item.component(item=item, prefix=prefix) }} {% endfor %}
{% import "components/pagination.html" as pagination %} {{ pagination.component(pages=2, labels=true, align='center') }}

Top Streaks

Participate on discussions on consecutive days to earn your IQ streak.

{% set streak = [{ avatar: 'assets/images/people/50/guy-1.jpg', name: 'Luci Bryant', points: '1,233' }, { avatar: 'assets/images/people/50/guy-2.jpg', name: 'Magnus Goldsmith', points: '1,230' }, { avatar: 'assets/images/people/50/woman-1.jpg', name: 'Katelyn Rankin', points: '1,119' }, { avatar: "assets/images/256_rsz_nicolas-horn-689011-unsplash.jpg", name: "Jenell D. Matney", points: '998' }, { avatar: "assets/images/256_rsz_sharina-mae-agellon-377466-unsplash.jpg", name: "Sherri J. Cardenas", points: '950' }, { avatar: "assets/images/256_rsz_karl-s-973833-unsplash.jpg", name: "Joseph S. Ferland", points: '652' }] %}
{% for item in streak %}
course {{ item.name }} {{ item.points }} opacity
{% endfor %}