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

24 lines
820 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 %}- Quesionnaire Response{% endblock %}
{% block nomcom_content %}
{% origin %}
{% if form %}
{% if questionnaire_response %}
<h2>Questionnaire response</h2>
{{ questionnaire_response }}
{% endif %}
<form id="questionnnaireform" method="post">
{% csrf_token %}
{% bootstrap_form form %}
<input class="btn btn-primary"
type="submit"
value="Save"
name="save"
{% if submit_disabled %}disabled="disabled"{% endif %}>
</form>
{% endif %}
{% endblock %}