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
68 lines
1.7 KiB
HTML
68 lines
1.7 KiB
HTML
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2015, All Rights Reserved #}
|
|
{% load origin %}
|
|
|
|
{% load bootstrap3 %}
|
|
|
|
{% load ietf_filters %}
|
|
|
|
{% block title %}Send ballot position for {{ ad }}{% endblock %}
|
|
|
|
{% block content %}
|
|
{% origin %}
|
|
<h1>Send ballot position for {{ ad }} on <a href="{% url "doc_view" name=doc.canonical_name %}">{{ doc }}</a></h1>
|
|
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
|
|
<div class="form-group">
|
|
<label>From</label>
|
|
<input class="form-control" type="text" placeholder="{{ frm }}" disabled>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label>To</label>
|
|
<input class="form-control" type="text" placeholder="{{ to }}" disabled>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label>Cc</label>
|
|
<input class="form-control" type="email" name="cc">
|
|
<div class="help-block">Separate email addresses with commas.</div>
|
|
</div>
|
|
|
|
{% if doc.notify %}
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="cc_state_change" value="1" checked>
|
|
<b>Cc:</b> {{ doc.notify }}
|
|
</label>
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% if doc.group.list_email %}
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="cc_group_list" value="1" checked>
|
|
<b>Cc:</b> {{ doc.group.list_email }}
|
|
</label>
|
|
</div>
|
|
{% endif %}
|
|
|
|
<div class="form-group">
|
|
<label>Subject</label>
|
|
<input class="form-control" type="text" placeholder="{{ subject }}" disabled>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label>Body</label>
|
|
<pre>{{ body|wrap_text }}</pre>
|
|
</div>
|
|
|
|
{% buttons %}
|
|
<button type="submit" class="btn btn-danger">Send</button>
|
|
{% endbuttons %}
|
|
</form>
|
|
|
|
{% endblock %}
|