24 lines
765 B
HTML
24 lines
765 B
HTML
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2021, All Rights Reserved #}
|
|
{% load origin %}
|
|
|
|
{% load bootstrap3 %}
|
|
|
|
{% block title %}{{ action|capfirst }} {{material.type.name}} for {{ material.meeting }} proceedings{% endblock %}
|
|
|
|
{% block content %}
|
|
{% origin %}
|
|
<h1>{{ action|capfirst }} material</h1>
|
|
|
|
<p>{{ action|capfirst }} <strong>{{material}}</strong> for the {{ material.meeting }} proceedings?</p>
|
|
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
{% buttons %}
|
|
<button type="submit" class="btn btn-primary">{{ action|capfirst }} material</button>
|
|
<a class="btn btn-default" href="{% url 'ietf.meeting.views_proceedings.material_details' num=material.meeting.number %}">Cancel</a>
|
|
{% endbuttons %}
|
|
</form>
|
|
|
|
{% endblock %}
|