mirror of https://github.com/interlegis/sapl.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
98 lines
3.5 KiB
98 lines
3.5 KiB
{% load i18n %}
|
|
{% load common_tags %}
|
|
|
|
{% load render_bundle from webpack_loader %}
|
|
{% load webpack_static from webpack_loader %}
|
|
|
|
<!DOCTYPE HTML>
|
|
<!--[if IE 8]>
|
|
<html class="no-js lt-ie9" lang="pt-br"> <![endif]-->
|
|
<!--[if gt IE 8]><!-->
|
|
<html lang="pt-br">
|
|
<!--<![endif]-->
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<!-- TODO: does it need this head_title here? -->
|
|
<title>{% block head_title %}{% trans 'SAPL - Sistema de Apoio ao Processo Legislativo' %}{% endblock %}</title>
|
|
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
|
|
|
|
{% block webpack_loader_css %}
|
|
{% render_chunk_vendors 'css' %}
|
|
{% render_bundle 'global' 'css' %}
|
|
{% render_bundle 'painel' 'css' %}
|
|
{% endblock webpack_loader_css %}
|
|
|
|
|
|
<style type="text/css">
|
|
html, body {
|
|
max-width: 100%;
|
|
overflow-x: hidden;
|
|
}
|
|
@media screen {
|
|
ul, li {
|
|
list-style-type: none;
|
|
}
|
|
}
|
|
|
|
</style>
|
|
</head>
|
|
<body class="painel-principal">
|
|
|
|
{% block vue_content %}
|
|
|
|
<style>[v-cloak]{display:none}</style>
|
|
<div id="painel" v-cloak class="col text-center" data-controller-id="{{ controller_id }}">
|
|
|
|
<painel-header ref="painelHeader"></painel-header>
|
|
|
|
<div class="row justify-content-center">
|
|
|
|
<div class="d-flex justify-content-start">
|
|
<painel-parlamentares ref="parlamentares"></painel-parlamentares>
|
|
|
|
<div class="d-flex col-md-8 painels">
|
|
<painel-oradores ref="oradores"></painel-oradores>
|
|
|
|
<div class="col-md-6 text-left painel" v-if="canRender">
|
|
<div class="d-flex align-items-left justify-content-left mb-2">
|
|
<h2 class="text-subtitle mb-0">Cronômetros</h2>
|
|
</div>
|
|
<div class="text-value" id="box_cronometros">
|
|
<painel-cronometro ref="sw:discurso" id="sw:discurso" title="Discurso"></painel-cronometro>
|
|
<painel-cronometro ref="sw:aparte" id="sw:aparte" title="Aparte"></painel-cronometro>
|
|
<painel-cronometro ref="sw:questao" id="sw:questao" title="Questão de Ordem"></painel-cronometro>
|
|
<painel-cronometro ref="sw:consideracoes" id="sw:consideracoes" title="Considerações Finais"></painel-cronometro>
|
|
<button class="btn btn-sm btn-secondary ms-2" onclick="changeFontSize('box_cronometros', -1)">
|
|
A-
|
|
</button>
|
|
<button class="btn btn-sm btn-secondary ms-2" onclick="changeFontSize('box_cronometros', 1)">
|
|
A+
|
|
</button>
|
|
</div>
|
|
</div>
|
|
<!-- <painel-cronometro-list ref="cronometro_list"></painel-cronometro-list>-->
|
|
|
|
<painel-resultado ref="resultado"></painel-resultado>
|
|
|
|
<painel-materia ref="materia"></painel-materia>
|
|
|
|
<div class="col-md-6 text-center painel" id="tema_solene_div" style="display: none">
|
|
<h2 class="text-subtitle">Tema da Sessão Solene</h2>
|
|
<span id="sessao_solene_tema" class="text-value"></span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|
|
</body>
|
|
{% block webpack_loader_js %}
|
|
{% render_chunk_vendors 'js' %}
|
|
{% render_bundle 'global' 'js' %}
|
|
{% render_bundle 'painel' 'js' %}
|
|
{% endblock webpack_loader_js %}
|
|
|
|
{% block webpack_loader_chunks_js %}
|
|
{% endblock webpack_loader_chunks_js %}
|
|
</html>
|