123456789101112131415161718192021222324252627282930 |
- {% extends "base.html" %}
- {% block head %}
- <title>Profile: {{ user.id }}</title>
- {% endblock %}
- {% block content %}
- <div id="profile-data" class="w-100" style="position: fixed; height: 30px; background-color: silver">
-
- Data
-
- </div>
- <div id="profile-data" style="position: fixed; top: 30px; background-color: silver; width: 80%">
- <center>
- <img src="{{ url_for('.static', filename='fake-tweet-activity.png') }}" alt="fake tweet activity" style="width: 60%; height: 40px;">
- </center>
- </div>
- fake-tweet-activity.png
- <div class="w-100" style="margin-top: 80px">
- <div class="w-100" style="height: 40px">
- <a href="{{ url_for('.get_profile_html', user_id=user.id, exclude_replies = 1) }}">Without replies</a>
- |
- <a href="{{ url_for('.get_profile_html', user_id=user.id, exclude_replies = 0) }}">With replies</a>
- </div>
- {% include "partial/tweets-timeline.html" %}
- </div>
- {% endblock %}
|