{% extends 'admin/master.html' %} {% block body %} {{ super() }}
{% if current_user.is_authenticated %}

{{current_user.name}} 欢迎回来!

数据概览:

共爬取到 {{total}}条资源, 今日新增 {{today}}条
{% else %}
{{ form.hidden_tag() if form.hidden_tag }} {% for f in form if f.type != 'CSRFTokenField' %}
{{ f.label }} {{ f }} {% if f.errors %}
    {% for e in f.errors %}
  • {{ e }}
  • {% endfor %}
{% endif %}
{% endfor %} 返回
{{ link | safe }} {% endif %}
{% endblock body %}