datatracker/ietf/templates/form.html
Lars Eggert bbf088e18b Hopefully the final check-ins.
- Legacy-Id: 19909
2022-02-08 17:29:15 +00:00

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 %}