aamalig / django-profile

Automatically exported from code.google.com/p/django-profile
BSD 2-Clause "Simplified" License
0 stars 0 forks source link

personal.html miss submit #33

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
seems that the html template to edit users personal informations miss the
submit button.

Relevant code:

{% block content %}
    <form class="personal" action="{{ request.path_info }}" method="post"
enctype="multipart/form-data">
    <fieldset>
        <legend>{% trans "Edit your personal information" %}</legend>
        {{ form.as_p }}
    </form>
{% endblock %}

Something like the code below should be added.
<input type="submit" value="Submit">

Hope this helps,

Fabio Varesano

Original issue reported on code.google.com by fabio.va...@gmail.com on 11 Sep 2008 at 2:15

GoogleCodeExporter commented 8 years ago
Relevant Django docs:
http://docs.djangoproject.com/en/dev/topics/forms/#displaying-a-form-using-a-tem
plate

Original comment by fabio.va...@gmail.com on 11 Sep 2008 at 2:16

GoogleCodeExporter commented 8 years ago
Fabio, you're totally right. I hadn't seen this bug. Thanks so much for 
reporting.

Original comment by david.ru...@gmail.com on 15 Sep 2008 at 7:08