50 lines
2.0 KiB
HTML
50 lines
2.0 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<table class="table table-hover">
|
|
<tr>
|
|
<td width="256px"><img src="{{ user.avatar(256) }}"></td>
|
|
<td>
|
|
<h1>User: {{ user.username }}</h1>
|
|
{% if user.about_me %}<p>{{ user.about_me }}</p>{% endif %}
|
|
{% if user.last_seen %}<p>Last seen on: {{ user.last_seen }}</p>{% endif %}
|
|
<p>{{ user.followers.count() }} followers, {{ user.following.count() }} following.</p>
|
|
{% if user == current_user %}
|
|
<p><a href="{{ url_for('edit_profile') }}">Edit your profile</a></p>
|
|
{% elif not current_user.is_following(user) %}
|
|
<p>
|
|
<form action="{{ url_for('follow', username=user.username) }}" method="post">
|
|
{{ form.hidden_tag() }}
|
|
{{ form.submit(value='Follow', class_='btn btn-primary') }}
|
|
</form>
|
|
</p>
|
|
{% else %}
|
|
<p>
|
|
<form action="{{ url_for('unfollow', username=user.username) }}" method="post">
|
|
{{ form.hidden_tag() }}
|
|
{{ form.submit(value='Unfollow', class_='btn btn-primary') }}
|
|
</form>
|
|
</p>
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
{% for post in posts %}
|
|
{% include '_post.html' %}
|
|
{% endfor %}
|
|
<nav aria-label="Post navigation">
|
|
<ul class="pagination">
|
|
<li class="page-item{% if not prev_url %} disabled{% endif %}">
|
|
<a class="page-link" href="#">
|
|
<span aria-hidden="true">←</span> Newer posts
|
|
</a>
|
|
</li>
|
|
<li class="page-item{% if not next_url %} disabled{% endif %}">
|
|
<a class="page-link" href="#">
|
|
Older posts <span aria-hidden="true">→</span>
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
{% endblock %}
|