MSRS/events/templates/events/index.html
2023-05-05 15:42:24 +02:00

57 lines
2.4 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.
De jaarlijkse verkiezingen is vaak de enige ledenvergadering in het jaar.
Een ledenvergadering wordt altijd via mail gecommuniceerd.
Je kan je in- of uitschrijven op de mailinglijst op <a href="https://adams.ugent.be">Zauth</a>.
</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.
The yearly elections is often the only Members' Assembly of the year.
A Members' Assembly will always be announced via mail.
You can (un)subscribe to the mailing list on <a href="https://adams.ugent.be">Zauth</a>.
</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 %}