[profiles] Actually make the form work

This commit is contained in:
2025-02-25 01:17:12 -05:00
parent 8c600d6b4b
commit 71874510a4
4 changed files with 33 additions and 11 deletions

View File

@ -46,9 +46,8 @@ input:focus {
{% block title %}Settings{% endblock %}
{% block details %}
<form action="." method="post">
{% csrf_token %}
{{form.as_p}}
<input type="submit" value="Save">
<form method="post">{% csrf_token %}
{{form.as_p}}
<input type="submit" value="Save">
</form>
{% endblock %}