{% load i18n static simpletags log %}
{% now "H" as lu_hour %} {% now "Y年n月j日" as lu_date %} {% now "w" as lu_week %} {# ===== 欢迎横幅 ===== #}
{% if lu_hour|add:"0" < 6 %}夜深了{% elif lu_hour|add:"0" < 9 %}早上好{% elif lu_hour|add:"0" < 12 %}上午好{% elif lu_hour|add:"0" < 14 %}中午好{% elif lu_hour|add:"0" < 18 %}下午好{% else %}晚上好{% endif %},{{ user.username }}
{{ lu_date }} {% if lu_week == "0" %}星期日{% elif lu_week == "1" %}星期一{% elif lu_week == "2" %}星期二{% elif lu_week == "3" %}星期三{% elif lu_week == "4" %}星期四{% elif lu_week == "5" %}星期五{% else %}星期六{% endif %} · 欢迎使用 LuckyUI 管理站点
{% if "SIMPLEUI_HOME_INFO"|get_config != False %} {% endif %}
{# ===== 快捷导航 ===== #} {% if "SIMPLEUI_HOME_QUICK"|get_config != False %}
快捷导航
{% endif %} {# ===== 最近动作 ===== #} {% if "SIMPLEUI_HOME_ACTION"|get_config != False %}
最近动作
{% get_admin_log 10 as admin_log for_user user %} {% if admin_log %}
{% for entry in admin_log %}
{{ entry.user }} {{ entry.content_type|default:'系统' }}

{{ entry }}

{% endfor %}
{% else %}

暂无最近操作记录

{% endif %}
{% endif %}