* text-muted -> text-body-secondary * navbar-dark is deprecated * Remove FIXME block, not an issue anymore * Remove `navbar-light`
25 lines
848 B
HTML
25 lines
848 B
HTML
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2015, All Rights Reserved #}
|
|
{% load origin %}
|
|
{% load django_bootstrap5 %}
|
|
{% block title %}Add comment on {{ liaison.title }}{% endblock %}
|
|
{% block content %}
|
|
{% origin %}
|
|
<h1>
|
|
Add comment
|
|
<br>
|
|
<small class="text-body-secondary">{{ liaison.title }}</small>
|
|
</h1>
|
|
<p>
|
|
The comment will be added to the history trail of the statement.
|
|
</p>
|
|
<form class="add-comment" method="post">
|
|
{% csrf_token %}
|
|
{% bootstrap_form form layout="horizontal" %}
|
|
<button type="submit" class="offset-md-2 btn btn-primary">Add Comment</button>
|
|
<a class="btn btn-secondary float-end"
|
|
href="{% url "ietf.liaisons.views.liaison_history" object_id=liaison.id %}">
|
|
Back
|
|
</a>
|
|
</form>
|
|
{% endblock %} |