26 lines
830 B
HTML
26 lines
830 B
HTML
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2015, All Rights Reserved #}
|
|
{% load origin %}
|
|
{% load static %}
|
|
{% load django_bootstrap5 %}
|
|
{% block title %}{{ title|striptags }}{% endblock %}
|
|
{% block pagehead %}
|
|
<link rel="stylesheet" href="{% static 'ietf/css/datepicker.css' %}">
|
|
{% endblock %}
|
|
{% block content %}
|
|
{% origin %}
|
|
<h1>{{ title|safe }}</h1>
|
|
{% if description %}
|
|
<p>
|
|
{{ description|safe }}
|
|
</p>
|
|
{% endif %}
|
|
<form method="post" class="show-required">
|
|
{% csrf_token %}
|
|
{% bootstrap_form form layout='horizontal' %}
|
|
<button type="submit" name="{{ button|slugify }}" class="btn btn-primary">{{ button }}</button>
|
|
</form>
|
|
{% endblock %}
|
|
{% block js %}
|
|
<script src="{% static 'ietf/js/datepicker.js' %}"></script>
|
|
{% endblock %} |