adejs/controllers/total/templates/total.pug

55 lines
1.5 KiB
Plaintext
Raw Normal View History

2017-09-24 00:38:12 +02:00
extends ../../../templates/base.pug
block content
2017-09-25 17:17:24 +02:00
#loading
.center
.loader
div Loading your calendar, please wait...
#error(style="display:none;")
.row
.col-2
.col-8
.alert.alert-danger
.row
.col-8
.center.btn
<strong>Error:</strong> could not connect to calendar
.col-4
button#tryAgain.btn.btn-primary Click here to try again
.col-2
#result
2018-11-15 17:19:13 +01:00
block mistake
p.
If you think there is a mistake in this table, feel free to
<a href="mailto:thomas@forgione.fr">send me a mail</a>
2018-11-21 11:17:53 +01:00
exaplaining what are the problems so I can fix it. Thanks!
2018-06-04 18:31:00 +02:00
2017-09-25 17:17:24 +02:00
block extracss
style.
.center {
text-align: center;
}
.loader {
display: inline-block;
text-align: center;
border: 16px solid #f3f3f3; /* Light grey */
border-top: 16px solid #3498db; /* Blue */
border-radius: 50%;
width: 120px;
height: 120px;
animation: spin 2s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
block extrajs
2017-10-03 10:54:49 +02:00
script.
window.TABLE_URL = "#{tableUrl}";
script(src="/static/js/totalTable.js")