{% extends "master.html" %} {% block head %} {% endblock %} {% macro student_block(student) %}

{{student.irc}}

{{student.irc}}'s Avatar
    {% for forge_link in studentforges %}
  • {{forge_link}}
  • {% endfor %} {% set hw = student.hw|default({}) %} {% if student.isActive %} {% for key in hw_keys %} {% if key in hw %}
  • {{key}}
  • {% else %}
  • {{key}}?
  • {% endif %} {% endfor %} {% else %} {% for key, loc in hw.items() %}
  • {{key}}
  • {% endfor %} {% endif %} {# # This block used for quick grading reference ;) {% if student.get('name') %}
  • {{student.name}}
  • {% endif %} #}
{% endmacro %} {% block jumbotron %}

Participants

Should have {{target_number|int}} blog post(s)

{% endblock %} {% block body %}
{% for student in student_data %} {{ student_block(student) }} {% if loop.index % 3 == 0 %}
{% endif %} {% endfor %}
{% endblock %}