tweet-collection.html 541 B

123456789101112131415161718192021222324
  1. {% extends "base.html" %}
  2. {% block head %}
  3. <title>Tweet Library: {{ user.id }}</title>
  4. {% endblock %}
  5. {% block content %}
  6. {% if show_parent_tweet_controls %}
  7. <div>
  8. <a href="{{ url_for('.get_tweet_html', tweet_id=tweets[0].conversation_id, view='thread') }}">author thread</a>
  9. |
  10. <a href="{{ url_for('.get_tweet_html', tweet_id=tweets[0].conversation_id, view='conversation') }}">full convo</a>
  11. </div>
  12. {% endif %}
  13. {% with show_thread_controls=True %}
  14. {% include "partial/tweets-timeline.html" %}
  15. {% endwith %}
  16. {% endblock %}