From c4f98580c13f4e0581cd86e36b3d009fc1bc0c4f Mon Sep 17 00:00:00 2001 From: Glandos Date: Wed, 7 Jul 2021 22:48:55 +0200 Subject: [PATCH] move extra options to bottom --- ihatemoney/templates/forms.html | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/ihatemoney/templates/forms.html b/ihatemoney/templates/forms.html index 3dc2f9c8..4b10902f 100644 --- a/ihatemoney/templates/forms.html +++ b/ihatemoney/templates/forms.html @@ -124,13 +124,6 @@ {{ input(form.what, inline=True) }} {{ input(form.payer, inline=True, class="form-control custom-select") }} {{ input(form.amount, inline=True) }} -
- Options avancées - {% if g.project.default_currency != "XXX" %} - {{ input(form.original_currency, inline=True, class="form-control custom-select") }} - {% endif %} - {{ input(form.external_link, inline=True) }} -
@@ -148,6 +141,14 @@
+ +
+ {{ _("More options") }} + {% if g.project.default_currency != "XXX" %} + {{ input(form.original_currency, inline=True, class="form-control custom-select") }} + {% endif %} + {{ input(form.external_link, inline=True) }} +
{{ form.submit(class="btn btn-primary") }}