mirror of
https://github.com/spiral-project/ihatemoney.git
synced 2025-04-30 18:22:38 +02:00
move extra options to bottom
This commit is contained in:
parent
6e2283f915
commit
c4f98580c1
1 changed files with 8 additions and 7 deletions
|
@ -124,13 +124,6 @@
|
||||||
{{ input(form.what, inline=True) }}
|
{{ input(form.what, inline=True) }}
|
||||||
{{ input(form.payer, inline=True, class="form-control custom-select") }}
|
{{ input(form.payer, inline=True, class="form-control custom-select") }}
|
||||||
{{ input(form.amount, inline=True) }}
|
{{ input(form.amount, inline=True) }}
|
||||||
<details class="mb-2">
|
|
||||||
<summary class="mb-2">Options avancées</summary>
|
|
||||||
{% if g.project.default_currency != "XXX" %}
|
|
||||||
{{ input(form.original_currency, inline=True, class="form-control custom-select") }}
|
|
||||||
{% endif %}
|
|
||||||
{{ input(form.external_link, inline=True) }}
|
|
||||||
</details>
|
|
||||||
|
|
||||||
<div class="form-group row">
|
<div class="form-group row">
|
||||||
<label class="col-3" for="payed_for">{{ _("For whom?") }}</label>
|
<label class="col-3" for="payed_for">{{ _("For whom?") }}</label>
|
||||||
|
@ -148,6 +141,14 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<details class="mb-2">
|
||||||
|
<summary class="mb-2">{{ _("More options") }}</summary>
|
||||||
|
{% if g.project.default_currency != "XXX" %}
|
||||||
|
{{ input(form.original_currency, inline=True, class="form-control custom-select") }}
|
||||||
|
{% endif %}
|
||||||
|
{{ input(form.external_link, inline=True) }}
|
||||||
|
</details>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
<div class="actions">
|
<div class="actions">
|
||||||
{{ form.submit(class="btn btn-primary") }}
|
{{ form.submit(class="btn btn-primary") }}
|
||||||
|
|
Loading…
Reference in a new issue