{% extends "base.html" %} {% block title %}角色管理 - 学生课程管理系统{% endblock %} {% block content %}
| ID | 角色名称 | 权限 | 备注 | 操作 |
|---|---|---|---|---|
| {{ role.id }} | {{ role.name }} | {% if role.name == '超级管理员' %} 全部权限 {% elif role.permissions %} {% set perms = role.permissions.split(',') %} {% for p in perms %} {% if p.endswith('_view') %} {{ p.replace('_view','').replace('_',' ') }} 查看 {% elif p.endswith('_export') %} {{ p.replace('_export','').replace('_',' ') }} 导出 {% else %} {{ p }} {% endif %} {% endfor %} {% else %} 无权限 {% endif %} | {{ role.remark or '' }} | {% if current_user.has_permission('role_edit') and role.name != '超级管理员' %} 编辑 {% endif %} {% if current_user.has_permission('role_delete') and role.name != '超级管理员' %} {% endif %} |