{% extends "base.html" %} {% block title %}选择题目方向{% endblock %} {% block styles %} {% endblock %} {% block content %}
{% if categories %}
{% for category in categories %}
{{ category.name }}
{{ category.description or '暂无描述' }}
{% endfor %}
{% else %}

暂无可用方向

管理员尚未配置或启用任何题目方向,请联系管理员进行配置

{% if current_user.is_admin %} 前往配置 {% endif %}
{% endif %}
{% endblock %}