{% extends 'base.html' %} {% load filters %} {% block title %}Рейтинг{% endblock %} {% block content %}
Студент | {% for task in Block.tasks %}{% if admin_course %}{{ task.name }}{% else %}{{ task.name }}{% endif %} | {% endfor %}Оценка |
---|---|---|
{% if admin_course %}{{ sub.user|userinfo_by_user }}{% else %}{{ sub.user|userinfo_by_user }}{% endif %} | {% for task in Block.tasks %} {% with status=sub.user|mark_status:task %}{% if current_page == 'admin' and status != '-' %} {{ status }} {% else %} {{ status }} {% endif %} | {% endwith %} {% endfor %}
{% with mark=Block|mark_for_block:sub.user %}
{% if mark|marked %}
{{ mark }}
{% endif %}
{% endwith %}
|