mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
fix(python): fix ordering of fields in partials/account_form.html
Signed-off-by: Kevin Morris <kevr@0cost.org>
This commit is contained in:
parent
cf978e23aa
commit
27f8603dc5
1 changed files with 32 additions and 32 deletions
|
@ -42,17 +42,6 @@
|
||||||
"account is inactive." | tr }}</em>
|
"account is inactive." | tr }}</em>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
{% if request.user.is_elevated() %}
|
|
||||||
<p>
|
|
||||||
<label for="id_inactive">{% trans %}Inactive{% endtrans %}:</label>
|
|
||||||
<input id="id_inactive" type="checkbox" name="J"
|
|
||||||
{% if inactive %}
|
|
||||||
checked="checked"
|
|
||||||
{% endif %}
|
|
||||||
>
|
|
||||||
</p>
|
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
{% if request.user.has_credential(creds.ACCOUNT_CHANGE_TYPE) %}
|
{% if request.user.has_credential(creds.ACCOUNT_CHANGE_TYPE) %}
|
||||||
<p>
|
<p>
|
||||||
<label for="id_type">
|
<label for="id_type">
|
||||||
|
@ -85,6 +74,17 @@
|
||||||
</p>
|
</p>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
|
{% if request.user.is_elevated() %}
|
||||||
|
<p>
|
||||||
|
<label for="id_inactive">{% trans %}Inactive{% endtrans %}:</label>
|
||||||
|
<input id="id_inactive" type="checkbox" name="J"
|
||||||
|
{% if inactive %}
|
||||||
|
checked="checked"
|
||||||
|
{% endif %}
|
||||||
|
>
|
||||||
|
</p>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
<!-- Email -->
|
<!-- Email -->
|
||||||
<p>
|
<p>
|
||||||
<label for="id_email">
|
<label for="id_email">
|
||||||
|
|
Loading…
Add table
Reference in a new issue