123456789101112131415161718192021222324 |
- {% extends "base.html" %}
- {% block head %}
- <title>Tweet Library: {{ user.id }}</title>
- {% endblock %}
- {% block content %}
- {% if show_parent_tweet_controls %}
- <div>
- <a href="{{ url_for('.get_tweet_html', tweet_id=tweets[0].conversation_id, view='thread') }}">author thread</a>
- |
- <a href="{{ url_for('.get_tweet_html', tweet_id=tweets[0].conversation_id, view='conversation') }}">full convo</a>
- </div>
- {% endif %}
- {% with show_thread_controls=True %}
-
- {% include "partial/tweets-timeline.html" %}
-
- {% endwith %}
-
- {% endblock %}
|