No button if not logged in

This commit is contained in:
Midgard 2020-07-22 17:34:14 +02:00
parent 9d82b20151
commit 60212ad62a
Signed by: midgard
GPG key ID: 511C112F1331BBB4

View file

@ -6,9 +6,13 @@
<p>{{ event.count_interested }} in wachtlijst</p>
{% endif %}
{% if not my_registration %}
<p><input type="submit" value="Ik wil komen"></p>
{% if user.is_authenticated %}
{% if not my_registration %}
<p><input type="submit" value="Ik wil komen"></p>
{% else %}
<p>Mijn status: {{ my_registration.state_str }} <input type="button" disabled="disabled" value="Uitschrijven (todo)"></input></p>
{% endif %}
{% else %}
<p>Mijn status: {{ my_registration.state_str }} <input type="button" disabled="disabled" value="Uitschrijven (todo)"></input></p>
<p>Je moet inloggen voor je je kan inschrijven</p>
{% endif %}
</form>