django-project/templates/registration/profile.html
2023-03-11 19:24:13 +01:00

20 lines
374 B
HTML

{% extends "base_main.html" %}
{% block title %}Profile {{ user.username }}{% endblock %}
{% block main %}
<h1>Profile {{ user.username }}</h1>
<table>
<tr>
<td>Username</td>
<td>{{ user.username }}</td>
</tr>
<tr>
<td>First name</td>
<td>{{ user.first_name }}</td>
</tr>
<tr>
<td>Last name</td>
<td>{{ user.last_name }}</td>
</tr>
</table>
{% endblock %}