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
32 lines (24 loc) · 939 Bytes
/
volunteer.html
File metadata and controls
32 lines (24 loc) · 939 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
27
28
29
30
31
32
{% extends "base.html" %}
{# Copyright The IETF Trust 2021, All Rights Reserved #}
{% load origin %}
{% load bootstrap3 %}
{% block title %}Volunteer for NomCom{% endblock %}
{% block content %}
{% origin %}
<h1>Volunteer for NomCom</h1>
{% if can_volunteer.exists %}
<form method="post" >
{% csrf_token %}
{% bootstrap_form form %}
{% buttons %}
<button type="submit" class="btn btn-primary">Submit</button>
{% endbuttons %}
</form>
{% endif %}
{% if already_volunteered.exists %}
<div class="alert alert-info" 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 %}