youtube-channel.html 300 B

123456789101112131415161718192021
  1. {% extends "base.html" %}
  2. {% block head %}
  3. <title>Tweet Library: {{ user.id }}</title>
  4. {% endblock %}
  5. {% block content %}
  6. {% include "partial/page-nav.html" %}
  7. {% include "partial/users-list.html" %}
  8. {% if brand %}
  9. {% include "partial/brand-info.html" %}
  10. {% endif %}
  11. {% endblock %}