takahe/templates/activities/local.html

16 wiersze
404 B
HTML
Czysty Zwykły widok Historia

2022-11-14 01:42:47 +00:00
{% extends "base.html" %}
{% block title %}Local Timeline{% endblock %}
{% block content %}
2022-11-22 15:57:40 +00:00
{% for post in page_obj %}
2022-11-18 00:43:00 +00:00
{% include "activities/_post.html" %}
{% empty %}
No posts yet.
{% endfor %}
2022-11-22 15:57:40 +00:00
{% if page_obj.has_next %}
<div class="load-more"><a class="button" href=".?page={{ page_obj.next_page_number }}">Next Page</a></div>
{% endif %}
2022-11-14 01:42:47 +00:00
{% endblock %}