PCv5/app/templates/user.html

15 lines
338 B
HTML
Raw Normal View History

{% extends "base/base.html" %}
2019-03-31 09:40:33 +02:00
{% block title %}
<h1>Profil de '{{ user.name }}'</h1>
{% endblock %}
{% block content %}
<section>
2019-03-31 09:40:33 +02:00
<div>
<img class="avatar" src="{{ url_for('static', filename=user.avatar) }}" alt="{{ user.name }}" style="display:inline; vertical-align:middle;"/>
2019-03-31 09:40:33 +02:00
{{ user.name }}
</div>
</section>
{% endblock %}