datatracker/ietf/templates/ipr/add_comment.html

26 lines
693 B
HTML

{% extends "base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin %}
{% load bootstrap3 %}
{% block title %}Add comment on {{ ipr.title }}{% endblock %}
{% block content %}
{% origin %}
<h1>Add comment<br><small>{{ ipr }}</small></h1>
<p>The comment will be added to the history trail of the disclosure.</p>
<form class="add-comment" method="post">
{% csrf_token %}
{% bootstrap_form form %}
{% buttons %}
<button type="submit" class="btn btn-primary">Add Comment</button>
<a class="btn btn-default pull-right" href="{% url "ietf.ipr.views.history" id=ipr.id %}">Back</a>
{% endbuttons %}
</form>
{% endblock %}