2017-09-14 17:48:56 +00:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<table>
|
|
|
|
<tr valign="top">
|
|
|
|
<td><img src="{{ user.avatar(128) }}"></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 %}
|
2017-09-16 07:05:17 +00:00
|
|
|
<p>{{ user.followers.count() }} followers, {{ user.followed.count() }} following.</p>
|
2017-09-14 17:48:56 +00:00
|
|
|
{% if user == current_user %}
|
|
|
|
<p><a href="{{ url_for('edit_profile') }}">Edit your profile</a></p>
|
2017-09-16 07:05:17 +00:00
|
|
|
{% 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') }}
|
|
|
|
</form>
|
|
|
|
</p>
|
|
|
|
{% else %}
|
|
|
|
<p>
|
|
|
|
<form action="{{ url_for('unfollow', username=user.username) }}" method="post">
|
|
|
|
{{ form.hidden_tag() }}
|
|
|
|
{{ form.submit(value='Unfollow') }}
|
|
|
|
</form>
|
|
|
|
</p>
|
2017-09-14 17:48:56 +00:00
|
|
|
{% endif %}
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
<hr>
|
|
|
|
{% for post in posts %}
|
|
|
|
{% include '_post.html' %}
|
|
|
|
{% endfor %}
|
2017-09-18 05:41:40 +00:00
|
|
|
{% if prev_url %}
|
|
|
|
<a href="{{ prev_url }}">Newer posts</a>
|
|
|
|
{% endif %}
|
|
|
|
{% if next_url %}
|
|
|
|
<a href="{{ next_url }}">Older posts</a>
|
|
|
|
{% endif %}
|
2017-09-14 17:48:56 +00:00
|
|
|
{% endblock %}
|