datatracker/ietf/templates/nomcom/private_feedback_email.html

21 lines
684 B
HTML

{% extends "nomcom/nomcom_private_base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin %}
{% load django_bootstrap5 %}
{% load nomcom_tags %}
{% block subtitle %}- Provide feedback email{% endblock %}
{% block nomcom_content %}
{% origin %}
{% if form %}
<form id="paste-email-feedback-form" method="post">
{% csrf_token %}
{% bootstrap_form form %}
<button class="btn btn-primary"
type="submit"
name="save"
{% if submit_disabled %}disabled{% endif %}>
Save
</button>
</form>
{% endif %}
{% endblock %}