You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

14 lines
322 B

{% extends 'base.html' %}
{% block content %}
<h2>Profile</h2>
{% for field in form %}
{{ field.error }}
{% endfor %}
<form action="{% url 'profile:update_profile' %}" method="post">{% csrf_token %}
{{ form.as_ul }}
<input type="submit" value="Update">
</form>
{% endblock %}