10 lines
365 B
HTML
10 lines
365 B
HTML
{% extends 'generic/base.html' %}
|
|
|
|
{% block content %}
|
|
<h2>Editing user: {{object.username}}</h2>
|
|
This form allows you to edit additional user details. Name and emails can be edited <a href="{% url 'account_update' object.username %}">here</a>
|
|
<form method="post">{% csrf_token %}
|
|
{{ form.as_p }}
|
|
<input type="submit" value="Update">
|
|
</form>
|
|
{% endblock %} |