datatracker/ietf/templates/doc/change_shepherd_email.html
2021-11-10 09:35:10 +00:00

26 lines
659 B
HTML

{% extends "base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin %}
{% load django_bootstrap5 %}
{% block title %}Change the document shepherd email for {{ doc.name }}-{{ doc.rev }}{% endblock %}
{% block content %}
{% origin %}
<h1>Change the document shepherd email<br><small>{{ doc.name }}-{{ doc.rev }}</small></h1>
<form method="post">
{% csrf_token %}
{% bootstrap_form form %}
<a class="btn btn-primary pull-right" href="{% url "ietf.doc.views_doc.document_main" name=doc.name %}">Back</a>
<button type="submit" class="btn btn-primary">Save</button>
</form>
{% endblock %}