coriplus/templates/private_messages.html

11 lines
249 B
HTML
Raw Normal View History

2019-05-01 15:33:28 +02:00
{% extends "base.html" %}
{% block body %}
<h2>Your Timeline</h2>
<ul>
{% for message in message_list %}
<li>{% include "includes/message.html" %}</li>
{% endfor %}
</ul>
{% include "includes/pagination.html" %}
{% endblock %}