25 lines
651 B
HTML
25 lines
651 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<table>
|
|
<tr valign="top">
|
|
<td><img src="data:image/png;base64,{{ user.gen_avatar(write_png=False) }}"></td>
|
|
<td>
|
|
<h1>User: {{ user.username }}</h1>
|
|
<h1>CUdebug: {{ current_user }}</h1>
|
|
<h1>Udebug: {{ user }}</h1>
|
|
{% if user.about_me %}<p>{{ user.about_me }}</p>{% endif %}
|
|
{% if user.last_seen %}<p>Last activity:{{ user.last_seen }}</p>{% endif %}
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
{% if user == current_user %}
|
|
<p><a href="{{ url_for('edit_profile') }}">Edit Profile</a></p>
|
|
{% endif %}
|
|
<hr>
|
|
{% for post in posts %}
|
|
{% include '_post.html' %}
|
|
{% endfor %}
|
|
{% endblock %}
|
|
|