28 lines
786 B
HTML
28 lines
786 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<article>
|
|
<header>
|
|
<p><a href="{% url 'storefront:customer-detail' customer.pk %}">← Back</a></p>
|
|
<h1>Update your profile</h1>
|
|
</header>
|
|
<section>
|
|
<form method="POST" action="{% url 'storefront:customer-update' customer.pk %}">
|
|
{% csrf_token %}
|
|
<table class="form-table">
|
|
{{form.as_table}}
|
|
<tfoot>
|
|
<tr>
|
|
<td>
|
|
</td>
|
|
<td>
|
|
<button type="submit">Save changes</button>
|
|
</td>
|
|
</tr>
|
|
</tfoot>
|
|
</table>
|
|
</form>
|
|
</section>
|
|
</article>
|
|
{% endblock %}
|