Remove misleading back buttons from document metadata modification pages. Fixes #1671.
- Legacy-Id: 9814
Note: SVN reference [9792] has been migrated to Git commit 416cc5bf0b
27 lines
691 B
HTML
27 lines
691 B
HTML
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2015, All Rights Reserved #}
|
|
{% load origin %}
|
|
|
|
{% load bootstrap3 %}
|
|
|
|
{% block title %}Defer ballot for {{ doc }}{% endblock %}
|
|
|
|
{% block content %}
|
|
{% origin %}
|
|
<h1>Defer ballot<br><small><a href="{% url "doc_view" name=doc.canonical_name %}">{{ doc }}</a></small></h1>
|
|
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
<p class="alert alert-danger">
|
|
<b>Defer the ballot for {{ doc }}?</b>
|
|
<br>
|
|
The ballot will then be put on the IESG agenda of {{ telechat_date }}.
|
|
</p>
|
|
|
|
{% buttons %}
|
|
<button type="submit" class="btn btn-danger">Defer ballot</button>
|
|
{% endbuttons %}
|
|
</form>
|
|
|
|
{% endblock %}
|