aboutsummaryrefslogtreecommitdiff
path: root/templates/payment/create.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/payment/create.html')
-rw-r--r--templates/payment/create.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/payment/create.html b/templates/payment/create.html
index 8d18c13..379662a 100644
--- a/templates/payment/create.html
+++ b/templates/payment/create.html
@@ -69,7 +69,7 @@
{% for user in users %}
<option
value="{{ user.id }}"
- {% if ("" ~ user.id) == ("" ~ user_id) %}
+ {% if "" ~ user.id == "" ~ user_id %}
selected
{% endif %}
>
@@ -88,7 +88,7 @@
{% for category in categories %}
<option
value="{{ category.id }}"
- {% if "" ~ category.id == category_id %} selected {% endif %}
+ {% if "" ~ category.id == "" ~ category_id %} selected {% endif %}
>
{{ category.name }}
</option>