Add missing template for previous commit. Commit ready for merge.

- Legacy-Id: 12331
This commit is contained in:
Ryan Cross 2016-11-12 07:12:54 +00:00
parent d7c1fddb32
commit b04d07e5aa

View file

@ -0,0 +1,23 @@
{% extends "base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin %}
{% load staticfiles bootstrap3 widget_tweaks %}
{% block title %}Interim Meetings Skip Announcement{% endblock %}
{% block content %}
{% origin %}
<h1>Interim Meetings Skip Announcement</h1>
<p>You are requesting to complete scheduling of the interim meeting for {{ meeting.session_set.first.group.acronym|upper }} on {{ meeting.date }} without sending an announcemnt.</p>
<form action="" method="post">{% csrf_token %}
<input class="btn btn btn-danger" type="submit" value="Continue">
<a class="btn btn-default" href="{% url 'ietf.meeting.views.interim_announce' %}">Cancel</a>
</form>
{% endblock %}
{% block js %}
{% endblock %}