|
@@ -24,7 +24,7 @@
|
|
|
<p>{% trans "To make changes to your account, you must first enter your current password." %}</p>
|
|
|
{% with form.old_password as field %}
|
|
|
{% if field %}
|
|
|
- {% include "sentry/partial/_form_field.html" %}
|
|
|
+ {{ field|as_crispy_field }}
|
|
|
{% endif %}
|
|
|
{% endwith %}
|
|
|
<hr>
|
|
@@ -35,10 +35,10 @@
|
|
|
</div>
|
|
|
</fieldset>
|
|
|
{% with form.first_name as field %}
|
|
|
- {% include "sentry/partial/_form_field.html" %}
|
|
|
+ {{ field|as_crispy_field }}
|
|
|
{% endwith %}
|
|
|
{% with form.email as field %}
|
|
|
- {% include "sentry/partial/_form_field.html" %}
|
|
|
+ {{ field|as_crispy_field }}
|
|
|
{% endwith %}
|
|
|
<fieldset class="control-group">
|
|
|
<label>Avatar</label>
|
|
@@ -50,7 +50,7 @@
|
|
|
<hr>
|
|
|
<p>{% trans "You may also optionally change your password." %}</p>
|
|
|
{% with form.new_password as field %}
|
|
|
- {% include "sentry/partial/_form_field.html" %}
|
|
|
+ {{ field|as_crispy_field }}
|
|
|
{% endwith %}
|
|
|
|
|
|
<fieldset class="form-actions">
|