Allow the secretariat and ads to change the title of a status change
document. Fixes bug 1141.
Applied changes to adapt the code from Django 1.2 to 1.6: Provide a
quoted string to {% url %} and use request.user.person instead of
request.user.get_profile().
- Legacy-Id: 7221
Note: SVN reference [6361] has been migrated to Git commit 7c4cf7002f
43 lines
876 B
HTML
43 lines
876 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block morecss %}
|
|
.warning {
|
|
font-weight: bold;
|
|
color: #a00;
|
|
}
|
|
form.edit-info #id_title {
|
|
width: 600px;
|
|
}
|
|
{% endblock %}
|
|
|
|
{% block title %}
|
|
Change the title for {{titletext}}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>Change the title for {{titletext}}</h1>
|
|
|
|
<form class="edit-info" action="" enctype="multipart/form-data" method="POST">
|
|
<table>
|
|
{% for field in form.visible_fields %}
|
|
<tr>
|
|
<th>{{ field.label_tag }}:</th>
|
|
<td>
|
|
{{ field }}
|
|
{% if field.help_text %}<div class="help">{{ field.help_text }}</div>{% endif %}
|
|
{{ field.errors }}
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
<tr>
|
|
<td></td>
|
|
<td class="actions">
|
|
<a href="{% url "doc_view" name=doc.canonical_name %}">Back</a>
|
|
<input type="submit" value="Submit"/>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
|
|
{% endblock %}
|