1
0
forked from finn/site
site/backend/app/templates/user.html

16 lines
316 B
HTML
Raw Normal View History

2024-08-03 09:14:20 +00:00
{% 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></td>
</tr>
</table>
<hr>
{% for post in posts %}
{% include '_post.html' %}
{% endfor %}
{% endblock %}