datatracker/ietf/templates/meeting/new_meeting_schedule.html
Lars Eggert cf629a42ad And more fixes.
- Legacy-Id: 19877
2022-01-25 10:14:25 +00:00

24 lines
685 B
HTML

{# bs5ok #}
{% extends "base.html" %}
{# Copyright The IETF Trust 2015-2020, All Rights Reserved #}
{% load origin %}
{% load staticfiles %}
{% load ietf_filters %}
{% load django_bootstrap5 %}
{% block content %}
{% origin %}
<h1>
{% block title %}
{% if schedule %}
Copy agenda {{ schedule.name }} to new agenda
{% else %}
New agenda
{% endif %}
{% endblock %}
</h1>
<form method="post" class="my-3">
{% csrf_token %}
{% bootstrap_form form layout="horizontal" %}
<button type="submit" class="btn btn-primary">Create agenda</button>
</form>
{% endblock %}