23 lines
668 B
HTML
23 lines
668 B
HTML
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2015-2020, All Rights Reserved #}
|
|
{% load origin %}
|
|
{% load static %}
|
|
{% 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 %} |