13 lines
No EOL
520 B
HTML
13 lines
No EOL
520 B
HTML
{% extends 'layout.html' %}
|
|
{% block content %}
|
|
<section class="profile-section">
|
|
{% block profile-nav %}
|
|
{% include "../partials/_profile_nav.html" %}
|
|
{% endblock %}
|
|
<div class="profile-details">
|
|
<p><strong>Pseudo :</strong> {{ user.username }}</p>
|
|
<p><strong>Date d'nscription :</strong> {{ user.date_joined|date:"F j, Y" }}</p>
|
|
<p><strong>Bio de profil :</strong> {{ user.profile.biography }}</p>
|
|
</div>
|
|
</section>
|
|
{% endblock %} |