mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-18 04:03:22 +00:00
21 lines
543 B
HTML
21 lines
543 B
HTML
{% extends "core/base.html" %}
|
|
|
|
{% block title %}
|
|
{% if profile %}
|
|
Edit {{ profile.get_display_name }}
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
{% if profile %}
|
|
<h3>Edit user</h3>
|
|
<p><a href="{% url 'core:user_profile' profile.id %}">Back to profile</a></p>
|
|
<p>You're editing the profile of <strong>{{ profile.get_display_name }}</strong></p>
|
|
<form action="{% url 'core:user_edit' profile.id %}" method="post">
|
|
{% csrf_token %}
|
|
{{ user_form }}
|
|
<p><input type="submit" value="Save!" /></p>
|
|
</form>
|
|
{% endif %}
|
|
{% endblock %}
|