{% extends "base.html" %} {% block content %}

岗位管理

{% if current_user.is_admin() %} {% endif %}
说明:
{% for pos in positions %} {% else %} {% endfor %}
ID 岗位名称 描述 类型 操作
{{ pos.id }} {{ pos.name }} {% if pos.is_system == 1 %} 🔒 系统 {% endif %} {{ pos.description or '-' }} {% if pos.is_system == 1 %} 内置岗位 {% else %} 自定义 {% endif %} {% if pos.is_system == 0 %} {% else %} {% endif %}
暂无岗位
{% endblock %}