123456789101112131415161718192021 |
- {% extends "base.html" %}
- {% block head %}
- <title>Tweet Library: {{ user.id }}</title>
- {% endblock %}
- {% block content %}
- {% include "partial/page-nav.html" %}
-
- {% include "partial/users-list.html" %}
- {% if brand %}
- {% include "partial/brand-info.html" %}
- {% endif %}
-
- {% endblock %}
|