forked from adamlaska/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvolunteer.html
More file actions
26 lines (26 loc) · 1008 Bytes
/
Copy pathvolunteer.html
File metadata and controls
26 lines (26 loc) · 1008 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{% extends "base.html" %}
{# Copyright The IETF Trust 2021, All Rights Reserved #}
{% load origin %}
{% load django_bootstrap5 %}
{% block title %}Volunteer for NomCom{% endblock %}
{% block content %}
{% origin %}
<h1>Volunteer for NomCom</h1>
{% if can_volunteer.exists %}
<form method="post" class="my-3">
{% csrf_token %}
{% bootstrap_form form %}
<button type="submit" class="btn btn-primary">Submit</button>
</form>
{% endif %}
{% if already_volunteered.exists %}
<div class="alert alert-warning my-3" id="already-volunteered">
You have already volunteered for the
{% for nc in already_volunteered %}
{{ nc.year }}/{{ nc.year|add:1 }}{% if not forloop.last %},{% endif %}
{% endfor %}
Nominating Committee{{ already_volunteered|pluralize }}.
To modify your volunteer status, contact the NomCom chair.
</div>
{% endif %}
{% endblock %}