{% load static %} 管理员面板
用户管理

{{ message }}

{% for user in users %} {% endfor %}
用户名 姓名 角色
{{ user.name }}

{{ user.name_hanzi }}

{{ user.identity }}
论文管理 {% for publication in publications %} {% endfor %}
{{ publication.date }}

{{ publication.title }}

{{ publication.authors }}

{{ publication.journalname }}

内部文章 {% for article in articles %} {% endfor %}
{{ article.publish }} {{ article.editDateTime }}
积分管理 详细记录

  • 姓名
  • 总分
  • 已使用
  • 可用积分
{% for user in users %}
  • {{ user.name }}
  • {{ user.score }}
  • {{ user.scoreUsed }}
  • {{ user.score_aval }}
{% endfor %}
  • 姓名
  • 详情
  • 日期
{% for record in records %}
  • {{ record.username }}
  • {{ record.reason }}
  • {{ record.editDate }}
{% endfor %}