12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- {% extends "base.html" %}
- {% block head %}
- <title>Profile: {{ user.id }}</title>
-
- {% endblock %}
- {% block content %}
- <div class="w-100">
-
- {% include "partial/user-card.html" %}
-
- {% if brand %}
- {% include "partial/brand-info.html" %}
- {% endif %}
-
- <div class="w-100" style="height: 80px;">
- {% include "partial/page-nav.html" %}
-
- <div class="w-100">
- <form action="{{ url_for('twitter_v2_facade.get_profile_html', user_id=user.id) }}" method="GET">
-
- <input type="hidden" name="me" value="{{ me }}">
- <input type="hidden" name="user_id" value="{{ user.id }}">
-
- <input type="checkbox" name="exclude_replies" value="1" {% if request.args.exclude_replies %}checked{% endif %}> No replies
- |
- <input type="checkbox" name="only_media" value="1" {%if request.args.only_media %}checked{% endif %}> Only media
- <br>
- <button type="submit">Filter</button>
- </form>
- </div>
- </div>
-
-
-
- {% with show_thread_controls=True %}
-
- {% include "partial/tweets-timeline.html" %}
-
- {% endwith %}
-
- </div>
- {% endblock %}
|