mirror of
https://github.com/rmontanana/microblog.git
synced 2025-08-19 09:15:52 +00:00
30 lines
653 B
HTML
30 lines
653 B
HTML
{% 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 %}
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
{% if user == current_user %}
|
|
<p>
|
|
<a href="{{ url_for('edit_profile') }}">Edit your profile</a>
|
|
</p>
|
|
{% endif %}
|
|
<hr />
|
|
{% for post in posts %}
|
|
{% include '_post.html' %}
|
|
{% endfor %}
|
|
{% endblock %}
|