{% extends "admin_base.html" %} {% load dajaxice_templatetags %} {% block extrahead %} {{ block.super }} {% load static from staticfiles %} {% endblock %} {% block bigcontent %}
Name | {% for item in items %} {% if item.demonstration_set.count %} {% for dem in item.demonstration_set.all %}
{% if 'category' not in item_form_exclude %}
{{ dem.item.category }}
{% endif %}
{% if 'name' not in item_form_exclude %}
{{ dem.item.name}}
{% endif %}
{% if 'benchmark' not in item_form_exclude %}
{{ dem.item.benchmark.number }}{% if dem.item.description %}, {{ dem.item.description }}{% endif %}
{% endif %}
{{ dem.name }}
∀
|
{% endfor %}
{% else %}
{% if 'category' not in item_form_exclude %}
{{ item.category }}
{% endif %}
{% if 'name' not in item_form_exclude %}
{{ item.name }}
{% endif %}
{% if 'benchmark' not in item_form_exclude %}
{{ item.benchmark.number }}{% if item.description and 'description' not in item_form_exclude %}, {{ item.description }}{% endif %}
{% endif %}
{% if 'benchmark' in item_form_exclude and item.description and 'description' not in item_form_exclude %}
{{ item.description }}
{% endif %}
---------
∀
|
{% endif %}
{% endfor %}
{% if filtered %}
{% if extra_info == 'demonstrations' %}
Filtered Standards Demonstrated |
{% endif %}
Filtered Average |
{% endif %}
{% if extra_info == 'demonstrations' %}
Standards Demonstrated |
{% endif %}
Course Section Average |
---|---|---|---|---|---|---|
{{ student }} |
{% for mark in student.marks %}
{{ mark.get_grade }}
|
{% endfor %}
{% if filtered %}
{% if extra_info == 'demonstrations' %}
{{ student.filtered_standards_counts }} |
{% endif %}
{{ student.filtered_average }} |
{% endif %}
{% if extra_info == 'demonstrations' %}
{{ student.standards_counts }} |
{% endif %}
{{ student.average }} |
|
Students Demonstrated | {% for item in items %} {% if item.demonstration_set.count %} {% for dem in item.demonstration_set.all %}{{ item.marks_counts }} |
{% endfor %}
{% else %}
{{ item.marks_counts }} |
{% endif %}
{% endfor %}
{% if filtered %}
{{ totals.filtered_standards_text }}
|
{{ totals.filtered_average }}
|
{% endif %}
{{ totals.standards_text }}
|
{{ totals.course_section_average }}
|
Class Average | {% for item in items %} {% if item.demonstration_set.count %} {% for dem in item.demonstration_list %}{{ dem.class_average }} |
{% endfor %}
{% else %}
{{ item.class_average }} |
{% endif %}
{% endfor %}
{% if filtered %}
{{ totals.filtered_average }}
|
{% endif %}
{{ totals.course_section_average }}
|