{% for user_type in user_types %}
{% endfor %}
{% if not user_types %}
{% if user_type.is_system %}系统{% else %}自定义{% endif %} {{ user_type.display_name }}
{% if user_type.is_active %}启用{% else %}禁用{% endif %}| 类型标识 | {{ user_type.type_key }} |
| 每日翻译 | {% if user_type.daily_translations < 0 %} 无限制 {% else %} {{ user_type.daily_translations }} 次 {% endif %} |
| 最大页数 | {% if user_type.max_pages < 0 %} 无限制 {% else %} {{ user_type.max_pages }} 页 {% endif %} |
| 最大文件 | {{ (user_type.max_file_size / 1024 / 1024) | round(0) }} MB |
功能权限:
{% for feature in user_type.get_features() %}
{{ feature }}
{% endfor %}
{% if not user_type.get_features() %}
无特殊功能
{% endif %}
编辑
{% if not user_type.is_system %}
{% endif %}
数据库中暂无用户类型配置