48 lines
1.5 KiB
HTML
48 lines
1.5 KiB
HTML
{% extends "base.html" %}
|
|
{% block whole-page %}
|
|
<div id="app">
|
|
<div class="splash-screen">
|
|
<div class="sk-fading-circle">
|
|
<div class="sk-circle1 sk-circle"></div>
|
|
<div class="sk-circle2 sk-circle"></div>
|
|
<div class="sk-circle3 sk-circle"></div>
|
|
<div class="sk-circle4 sk-circle"></div>
|
|
<div class="sk-circle5 sk-circle"></div>
|
|
<div class="sk-circle6 sk-circle"></div>
|
|
<div class="sk-circle7 sk-circle"></div>
|
|
<div class="sk-circle8 sk-circle"></div>
|
|
<div class="sk-circle9 sk-circle"></div>
|
|
<div class="sk-circle10 sk-circle"></div>
|
|
<div class="sk-circle11 sk-circle"></div>
|
|
<div class="sk-circle12 sk-circle"></div>
|
|
</div>
|
|
</div>
|
|
<p class="footer">
|
|
You Yes Yet is loading.
|
|
You must enable JavaScript to use the You Yes Yet app.
|
|
</p>
|
|
</div>
|
|
{% endblock %}
|
|
{% block extra-script %}
|
|
var user = {
|
|
"username": "{{user.username}}",
|
|
"fullname": "{{user.fullname}}",
|
|
"id": {{user.id|default:-1}},
|
|
"authorised": {{user.authorised|default:false}}
|
|
};
|
|
{% endblock %}
|
|
{% block extra-tail %}
|
|
<!-- scripts and styles -->
|
|
<!-- ATTENTION \/ -->
|
|
<!-- ATTENTION /\ -->
|
|
<!-- Leaflet -->
|
|
<link rel="stylesheet" href="js/lib/node_modules/leaflet/dist/leaflet.css" />
|
|
{% script "js/lib/node_modules/signature_pad/dist/signature_pad.min.js" %}
|
|
{% script "js/lib/node_modules/leaflet/dist/leaflet.js" %}
|
|
{% script "/js/app.js" %}
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|