{% extends "bee_django_user/base.html" %} {% load bee_django_user_filter %} {% block content %} {% include 'bee_django_user/logo.html' %} {% include 'bee_django_user/nav.html' %}

班级详情

{% if perms.user_class.change %} 修改 {% endif %}
班级名称 {{ class.name }}
班级助教 {{ class.assistant.first_name }}
班级学生 {% for user in class.get_students %} {{ user.first_name }}{% if not forloop.last %},{% endif %} {% endfor %}
{% endblock %}