youtube-channel.html 464 B

1234567891011121314151617181920212223242526272829
  1. {% extends "base.html" %}
  2. {% block head %}
  3. <title>Tweet Library: {{ user.id }}</title>
  4. {% endblock %}
  5. {% block content %}
  6. <div class="w-100" style="height: 40px">
  7. <p class="w-100" style="text-align: right">
  8. {% if page_nav %}
  9. {% for nav_item in page_nav|sort(attribute='order') %}
  10. | <a href="{{ nav_item.href }}">{{ nav_item.label }}</a>
  11. {% endfor %}
  12. {% endif %}
  13. </p>
  14. </div>
  15. {% include "partial/users-list.html" %}
  16. {% endblock %}