{% extends "base.html" %} {% block title %}主页{% endblock %} {% block content %}
{% if user.role == 'admin' %}

欢迎管理员 {{ user.username }}!

{{ flag }}

{% else %}

欢迎 {{ user.username }}

只有管理员才能看到 Flag 哦!加油喵~

{% endif %}
{% endblock %}