remove add 100€ button in production mode

This commit is contained in:
2026-06-28 11:38:58 +02:00
parent 128b34e257
commit 534f88c9c5

View File

@@ -18,7 +18,9 @@
{% if user.accounts|length > 1 and (not focused_account or (focused_account.id != account.id)) %} {% if user.accounts|length > 1 and (not focused_account or (focused_account.id != account.id)) %}
<a href="/?account_id={{ account.id }}" class="btn btn-sm btn-outline-primary">Transaktionen ansehen</a> <a href="/?account_id={{ account.id }}" class="btn btn-sm btn-outline-primary">Transaktionen ansehen</a>
{% endif %} {% endif %}
{% if not production_mode %}
<a href="/demo/add_balance/{{ account.id }}" class="btn btn-sm btn-outline-primary">🚧 100 € einzahlen 🚧</a> <a href="/demo/add_balance/{{ account.id }}" class="btn btn-sm btn-outline-primary">🚧 100 € einzahlen 🚧</a>
{% endif %}
</div> </div>
</div> </div>
</div> </div>