28 lines
800 B
HTML
Executable file
28 lines
800 B
HTML
Executable file
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2021, All Rights Reserved #}
|
|
{% load origin static %}
|
|
{% load bootstrap3 %}
|
|
|
|
{% block pagehead %}
|
|
{{ form.media.css }}
|
|
{% endblock %}
|
|
|
|
{% block title %}Create timeslot for {{meeting}}{% endblock %}
|
|
|
|
{% block content %}
|
|
{% origin %}
|
|
<h1>Create timeslot for {{meeting}}</h1>
|
|
<form id="timeslot-form" method="post">
|
|
{% csrf_token %}
|
|
{% bootstrap_form form %}
|
|
{% buttons %}
|
|
<button type="submit" class="btn btn-primary">Save</button>
|
|
<a class="btn btn-default" href="{% url 'ietf.meeting.views.edit_timeslots' num=meeting.number %}">Cancel</a>
|
|
{% endbuttons %}
|
|
</form>
|
|
{% endblock %}
|
|
|
|
{% block js %}
|
|
<script src="{% static 'ietf/js/meeting/create_timeslot.js' %}"></script>
|
|
{{ form.media.js }}
|
|
{% endblock %} |