user-profile-bs.html 1.1 KB

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