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

班级列表

{% include 'bee_django_user/class/search.html' %}
{% if perms.bee_django_user.add_userclass %}
添加班级
{% endif %} {% for class in class_list %} {% endfor %}
班级名称 助教 讲师 客服
{{ class.name }} {% if class.status == 2 %} ({{ class.get_status }}) {% endif %} {{ class.assistant.first_name }} {{ class.lecturer.first_name }} {{ class.agent.first_name }} 进度 报表 总览 {% if perms.bee_django_user.change_userclass %} 修改 {% endif %} {# 删除#}
{% include 'bee_django_user/paginator.html' %} {% endblock %} {% block scripts %} {% endblock %}