select2 and switching the widgets over to using that. Port the milestones editing page to Bootstrap. - Legacy-Id: 8713
36 lines
1,002 B
HTML
36 lines
1,002 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/lib/select2.css">
|
|
<link rel="stylesheet" href="/facelift/css/lib/select2-bootstrap.css">
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>Change document shepherd<br><small>{{ doc.name }}-{{ doc.rev }}</small></h1>
|
|
|
|
<p>The shepherd needs to have a Datatracker account. A new account can be
|
|
<a href="{% url "create_account" %}">created here</a>.</p>
|
|
|
|
{% bootstrap_messages %}
|
|
|
|
<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/select2-3.5.2.min.js"></script>
|
|
{% endblock %}
|