summaryrefslogtreecommitdiffstats
path: root/ogcp/templates/actions/live_default.html
blob: 5cd68587d090ac05d3fa775b6badb1b9425a7e6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{% extends 'lives.html' %}
{% import "bootstrap/wtf.html" as wtf %}

{% set sidebar_state = 'disabled' %}
{% set btn_back = true %}

{% block content %}

<h2 class="mx-5 subhead-heading">
  {{ _('Set default ogLive') }}
</h2>

<p class="mx-5">{{ _('Default live: %(default_live)s', default_live=default_live) }}</p>

{{ wtf.quick_form(form,
                  action=url_for('action_live_default'),
                  method='post',
                  button_map={'ok': 'primary'},
                  extra_classes="m-5") }}

{% endblock %}