12 lines
231 B
HTML
12 lines
231 B
HTML
{% extends "profile_base.html" %}
|
|
|
|
{% block content %}
|
|
<div class="item">
|
|
<form method="POST" action="{%url local.views.edit %}">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
<input type="submit" value="Submit"/>
|
|
</form>
|
|
</div>
|
|
{% endblock %}
|