datatracker/ietf/templates/ipr/state.html

24 lines
598 B
HTML

{% extends "base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin %}
{% load bootstrap3 %}
{% block title %}Change State of {{ ipr.title }}{% endblock %}
{% block content %}
{% origin %}
<h1>Change State<br><small>{{ ipr }}</small></h1>
<form class="add-comment" method="post">
{% csrf_token %}
{% bootstrap_form form %}
{% buttons %}
<button type="submit" class="btn btn-primary">Save</button>
<a class="btn btn-default pull-right" href="{% url "ipr_show" id=ipr.id %}">Back</a>
{% endbuttons %}
</form>
{% endblock %}