1234567891011121314151617181920212223242526272829 |
- {% extends "base.html" %}
- {% block head %}
- <title>Tweet Library: {{ user.id }}</title>
- {% endblock %}
- {% block content %}
- <div class="w-100" style="height: 40px">
-
- <p class="w-100" style="text-align: right">
-
- {% if page_nav %}
- {% for nav_item in page_nav|sort(attribute='order') %}
- | <a href="{{ nav_item.href }}">{{ nav_item.label }}</a>
- {% endfor %}
- {% endif %}
-
- </p>
-
- </div>
-
- {% include "partial/users-list.html" %}
-
- {% endblock %}
|