KankenOnline/kanken_online/templates/user_page.html
2024-10-19 17:13:31 +01:00

10 lines
296 B
HTML

{% extends 'base.html' %}
{% block header %}
<h1>{% block title %}{{ localize("user_introduction") }} {{ username }}{% endblock %}</h1>
{% endblock %}
{% block content %}
<img id="pfp" src="{{ pfp_filename }}" width=128 height=128>
<span id="username">{{ username }}</span>
{% endblock %}