MSRS/events/templates/events/index.html
2021-04-18 20:58:18 +02:00

29 lines
591 B
HTML

{% extends "base.html" %}
{% load events_extras %}
{% block title %}Memberships{% endblock %}
{% block content %}
<h2>Membership</h2>
{% if events %}
<ul>
{% for x in events %}
<li id="{{x.event.id}}">
<h3>{{ x.event }}
{% if user.is_staff %}
<a href="/admin/events/event/{{ x.event.id }}/change/">Modificeren</a>
{% endif %}
</h3>
{% include "events/registrations.html" with event=x.event my_registration=x.my_registration %}
</li>
{% endfor %}
</ul>
{% else %}
<p>Geen enkel jaar om lid te zijn...? :thinking:</p>
{% endif %}
{% endblock %}