Conflicts: ietf/doc/templatetags/ietf_filters.py ietf/doc/views_charter.py ietf/templates/doc/charter/edit_notify.html ietf/templates/doc/charter/edit_telechat_date.html ietf/templates/doc/document_ballot_content.html ietf/templates/doc/document_history.html ietf/templates/doc/edit_notify.html ietf/templates/doc/edit_telechat_date.html ietf/templates/doc/notify.html ietf/templates/group/concluded_groups.html - Legacy-Id: 8429
34 lines
963 B
HTML
34 lines
963 B
HTML
{% extends "ietf.html" %}
|
|
|
|
{% load bootstrap3 %}
|
|
|
|
{% block title %}
|
|
Change document shepherd for {{ doc.name }}-{{ doc.rev }}
|
|
{% endblock %}
|
|
|
|
{% block pagehead %}
|
|
<link rel="stylesheet" href="/facelift/css/tokenfield-typeahead.min.css">
|
|
<link rel="stylesheet" href="/facelift/css/bootstrap-tokenfield.min.css">
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>Change document shepherd<br><small>{{ doc.name }}-{{ doc.rev }}</small></h1>
|
|
|
|
{% bootstrap_messages %}
|
|
|
|
<form class="tokenized-form" role="form" enctype="multipart/form-data" method="post">
|
|
{% csrf_token %}
|
|
{% bootstrap_form form %}
|
|
|
|
{% buttons %}
|
|
<button type="submit" class="btn btn-primary">Submit</button>
|
|
<a class="btn btn-default pull-right" href="{% url "doc_view" name=doc.name %}">Back</a>
|
|
{% endbuttons %}
|
|
</form>
|
|
{% endblock %}
|
|
|
|
{% block js %}
|
|
<script src="/facelift/js/lib/typeahead.bundle.min.js"></script>
|
|
<script src="/facelift/js/lib/bootstrap-tokenfield.min.js"></script>
|
|
{% endblock %}
|