Files
luntan/app/templates/users/notifications.html

11 lines
207 B
HTML

{% extends 'base.html' %}
{% block title %}通知{% endblock %}
{% block content %}
<h3>通知</h3>
<ul>
{% for n in items %}
<li>{{ n.type }} {{ n.created_at }}</li>
{% endfor %}
</ul>
{% endblock %}