user-profile.html 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {% extends "base.html" %}
  2. {% block head %}
  3. <title>Profile: {{ user.id }}</title>
  4. {% endblock %}
  5. {% block content %}
  6. <div class="w-100">
  7. {% include "partial/user-card.html" %}
  8. {% if brand %}
  9. {% include "partial/brand-info.html" %}
  10. {% endif %}
  11. <div class="w-100" style="height: 80px;">
  12. {% include "partial/page-nav.html" %}
  13. <div class="w-100">
  14. <form action="{{ url_for('twitter_v2_facade.get_profile_html', user_id=user.id) }}" method="GET">
  15. <input type="hidden" name="me" value="{{ me }}">
  16. <input type="hidden" name="user_id" value="{{ user.id }}">
  17. <input type="checkbox" name="exclude_replies" value="1" {% if request.args.exclude_replies %}checked{% endif %}> No replies
  18. |
  19. <input type="checkbox" name="only_media" value="1" {%if request.args.only_media %}checked{% endif %}> Only media
  20. <br>
  21. <button type="submit">Filter</button>
  22. </form>
  23. </div>
  24. </div>
  25. {% with show_thread_controls=True %}
  26. {% include "partial/tweets-timeline.html" %}
  27. {% endwith %}
  28. </div>
  29. {% endblock %}