datatracker/ietf/templates/nomcom/private_nominate.html
Lars Eggert bbf088e18b Hopefully the final check-ins.
- Legacy-Id: 19909
2022-02-08 17:29:15 +00:00

20 lines
721 B
HTML

{% extends "nomcom/nomcom_private_base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin %}
{% load static %}
{% load django_bootstrap5 %}
{% load nomcom_tags %}
{% block pagehead %}{{ form.media.css }}{% endblock %}
{% block subtitle %}- Nominate{% endblock %}
{% block nomcom_content %}
{% origin %}
<h2 class="mt-3">Candidate nomination</h2>
{% if form %}
<form id="nominate-form" method="post" class="my-3">
{% csrf_token %}
{% bootstrap_form form %}
<button class="btn btn-primary" type="submit" name="save" value="Save">Save</button>
</form>
{% endif %}
{% endblock %}
{% block js %}{{ form.media.js }}{% endblock %}