2019-05-01 15:33:28 +02:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
{% block body %}
|
|
|
|
|
<h2>Your Timeline</h2>
|
2021-10-17 10:20:47 +02:00
|
|
|
<ul class="timeline">
|
2019-05-01 15:33:28 +02:00
|
|
|
{% for message in message_list %}
|
2019-10-14 19:53:33 +02:00
|
|
|
<li id="{{ message.id }}">{% include "includes/message.html" %}</li>
|
2019-05-01 15:33:28 +02:00
|
|
|
{% endfor %}
|
|
|
|
|
</ul>
|
|
|
|
|
{% include "includes/pagination.html" %}
|
|
|
|
|
{% endblock %}
|