* fix: move vue app to parent dir * test: prepare vue for cypress testing * test: add basic cypress test for vue app * test: add agenda-neue header tests * test: meeting generator for cypress tests (wip) * test: agenda-neue meeting nav + settings button * test: agenda-neue check settings button position against viewport size * test: agenda-neue fix viewport + add schedule list header tests * test: agenda-neue timezone tests + future meeting template * test: agenda-neue add test floor plan image fixtures * test: floor-plan-neue - handle floor plan images * test: floor-plan-neue room selection + pin drop tests * test: floor-plan-neue - test all viewports * test: floor-plan-neue add missing header tests * test: agenda-neue - generate areas + groups * test: agenda-neue - test filter areas + groups dialog * test: agenda-neue code cleanup + generate schedule (wip) * test: agenda-neue - generate schedule (wip) * test: agenda-neue - generate schedule + test settings dialog (wip) * test: agenda-neue - settings timezone controls * test: agenda-neue - settings toggles + agenda table headers tests * test: agenda-neue - table events + memory fixes * test - agenda-neue - table events remaining columns tests * test: agenda-neue - meeting materials dialog + future schedule list table buttons * test: agenda-neue - remove skips * test: agenda-neue - search * test: agenda-neue - remove skips * test: agenda-neue - use random seed for deterministic results * test: agenda-neue - set constant clock * test: add percy to cypress + upgrade cypress * test: agenda-neue - jump to day tests * test: agenda-neue - add to calendar tests * test: agenda-neue - add pick sessions tests * test: agenda-neue - calendar view tests * test: agenda-neue - color assignment tests * test: agenda-neue - skip test not supported in firefox/safari * test: agenda-neue - live sessions tests * test: agenda-neue - smaller screens tests * chore: update workflows to handle modern + legacy cypress tests * test: fix legacy agenda weekview test + cypress legacy config
80 lines
2 KiB
HTML
80 lines
2 KiB
HTML
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2015-2021, All Rights Reserved #}
|
|
{% load origin %}
|
|
{% load static %}
|
|
{% load ietf_filters %}
|
|
{% load textfilters %}
|
|
{% load htmlfilters agenda_custom_tags %}
|
|
{% load django_vite %}
|
|
|
|
{% block title %}
|
|
IETF {{ meetingData.meetingNumber }} Meeting Agenda
|
|
{% endblock %}
|
|
{% block pagehead %}
|
|
<!-- AGENDA VUE COMPONENT -->
|
|
<!-- [html-validate-disable-block void-style, attribute-empty-style] -->
|
|
{{ meetingData|json_script:"meeting-data" }}
|
|
{% vite_asset 'client/main.js' %}
|
|
{% endblock %}
|
|
{% block morecss %}
|
|
body {
|
|
font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
|
|
}
|
|
|
|
@keyframes initspinner {
|
|
to { transform: rotate(360deg); }
|
|
}
|
|
|
|
#app-loading {
|
|
position: fixed;
|
|
top: 60px;
|
|
left: 0;
|
|
width: 100%;
|
|
height: calc(100% - 60px);
|
|
background-color: rgba(255,255,255,.75);
|
|
z-index: 2000000000;
|
|
backdrop-filter: blur(10px);
|
|
}
|
|
|
|
#app-loading:before {
|
|
content: '';
|
|
box-sizing: border-box;
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
width: 50px;
|
|
height: 50px;
|
|
margin-top: -25px;
|
|
margin-left: -25px;
|
|
border-radius: 50%;
|
|
border-top: 2px solid #999;
|
|
border-right: 2px solid transparent;
|
|
animation: initspinner .6s linear infinite;
|
|
z-index: 2000000000;
|
|
}
|
|
|
|
#app-loading:after {
|
|
content: 'Loading meeting {{ meetingData.meetingNumber }}...';
|
|
position: absolute;
|
|
text-align: center;
|
|
top: 50%;
|
|
margin-top: -100px;
|
|
left: 0;
|
|
right: 0;
|
|
font-weight: 500;
|
|
color: #999;
|
|
z-index: 2000000000;
|
|
}
|
|
{% endblock %}
|
|
{% block precontent %}
|
|
<div class="meeting-switch">
|
|
<i class="bi bi-arrow-left-right me-2"></i>
|
|
<a href="{% url 'ietf.meeting.views.agenda' num=meetingData.meetingNumber %}">Switch to Legacy Agenda Display</a>
|
|
</div>
|
|
{% endblock %}
|
|
{% block content %}
|
|
{% origin %}
|
|
<div id="app"></div>
|
|
<div id="app-loading"></div>
|
|
{% endblock %}
|