21 lines
521 B
HTML
21 lines
521 B
HTML
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2015-2020, All Rights Reserved #}
|
|
{% load origin %}
|
|
{% load static %}
|
|
{% load ietf_filters %}
|
|
{% load bootstrap3 %}
|
|
|
|
{% block content %}
|
|
{% origin %}
|
|
<h1>{% block title %}Copy schedule {{ schedule.name }}{% endblock %}</h1>
|
|
|
|
<form class="form-horizontal" method="post">
|
|
{% csrf_token %}
|
|
{% bootstrap_form form %}
|
|
|
|
{% buttons %}
|
|
<button type="submit" class="btn btn-default">Copy schedule</button>
|
|
{% endbuttons %}
|
|
</form>
|
|
{% endblock %}
|