MSRS/events/templates/events/index.html

53 lines
2.2 KiB
HTML

{% extends "base.html" %}
{% load events_extras %}
{% block title %}Memberships{% endblock %}
{% block content %}
<h2>Lidmaatschap Zeus WPI</h2>
<p>
Lid zijn betekent dat je je engageert om naar de ledenvergadering te proberen komen, en dat je op die vergadering stemrecht hebt.
Dat is belangrijk voor de vereniging aangezien we op de ledenvergadering 50% van onze leden nodig hebben om een geldige stemming te kunnen uitvoeren.
Een ledenvergadering wordt altijd via de <a href="https://lists.zeus.ugent.be/mailman/listinfo/leden">mailinglijst</a> gecommuniceerd. Je kunt je altijd inschrijven op deze mailinglijst.
</p>
<p>
Voor de rest is dit officiële "lidmaatschap" van geen gevolg. Je hoeft je hier niet in te schrijven om naar onze events te komen of om je Zeus-account (waaronder <a href="https://tab.zeus.gent/">Tab</a>) actief te houden.
</p>
<p>
Als je niet kunt inloggen op deze applicatie, kun je het bestuur contacteren via <a href="mailto:bestuur@zeus.ugent.be">bestuur@zeus.ugent.be</a>
</p>
<hr/>
<p>
Being a member means that you commit to try and come to the Members' Assembly, and that you will be entitled to vote there.
This is important to the Association because on an Members' Assembly we need 50% of our members in order to hold a valid vote.
A Members' Assembly will always be announced via the <a href="https://lists.zeus.ugent.be/mailman/listinfo/leden">mailing list</a>. You can always subscribe to this list.
</p>
<p>
This official "membership" is of no other consequence. You don't have to apply here to come to our events or to keep your Zeus account (and with it, your <a href="https://tab.zeus.gent/">Tab</a> account) active.
</p>
<p>
If you cannot log in to this application, you can contact the Board at <a href="mailto:bestuur@zeus.ugent.be">bestuur@zeus.ugent.be</a>
</p>
{% 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 %}