27 lines
672 B
HTML
27 lines
672 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}
|
|
Change the document shepherd email for {{ doc.name }}-{{ doc.rev }}
|
|
{% endblock %}
|
|
|
|
{% block pagehead %}
|
|
<link rel="stylesheet" type="text/css" href="/css/token-input.css"></link>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>Change the document shepherd email for {{ doc.name }}-{{ doc.rev }}</h1>
|
|
|
|
<form class="edit-info" method="post">{% csrf_token %}
|
|
<table>
|
|
{{ form.as_table }}
|
|
<tr>
|
|
<td></td>
|
|
<td class="actions">
|
|
<a class="button" href="{% url "doc_view" name=doc.name %}">Back</a>
|
|
<input class="button" type="submit" value="Save"/>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
{% endblock %}
|