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

23 lines
673 B
HTML

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