{% extends "base.html" %} {% block title %}老师管理 - 学生课程管理系统{% endblock %} {% block content %}

老师管理

新增老师 {% if current_user.has_permission('teacher_export') %} 导出Excel{% endif %}
{% for t in teachers %} {% endfor %}
ID姓名电话擅长科目状态操作
{{ t.id }} {{ t.name }} {{ t.phone or '-' }} {{ t.specialty or '-' }} {% if t.status == 1 %}在职{% else %}离职{% endif %}
{% endblock %}