26 lines
1,008 B
HTML
26 lines
1,008 B
HTML
{% 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 %} |