26 lines
703 B
HTML
26 lines
703 B
HTML
{% extends "base_title.html" %}
|
|
{% load bootstrap %}
|
|
|
|
{% block page_size %}col-sm-8{%endblock%}
|
|
|
|
{% block realcontent %}
|
|
<h2>Modifier mon profil</h2>
|
|
<form id="profile form-horizontal" method="post" action="">
|
|
<div class="row" style="margin: 0 15%;">
|
|
{% csrf_token %}
|
|
{{ user_form | bootstrap }}
|
|
{{ profile_form | bootstrap }}
|
|
</div>
|
|
|
|
{% if user.profile.comments %}
|
|
<div class="row" style="margin: 0 15%;">
|
|
<h4>Commentaires</h4>
|
|
<p>{{ user.profile.comments }}</p>
|
|
</div>
|
|
{% endif %}
|
|
|
|
<div class="form-actions">
|
|
<input type="submit" class="btn btn-primary pull-right" value="Enregistrer" />
|
|
</div>
|
|
</form>
|
|
{% endblock %}
|