2023-10-09 17:52:29 +02:00
<!doctype html>
2023-11-13 00:39:49 +01:00
< / style >
2023-10-09 17:52:29 +02:00
< title > Generatore di volantini< / title >
2023-11-30 00:05:03 +01:00
< head >
< link rel = "stylesheet" href = "{{ url_for('static', filename='style.css') }} " >
< title > gancio flyers< / title >
< / head >
< body >
< h3 > Generatore di volantini per balotta.org< / h3 >
2023-10-09 17:52:29 +02:00
< div >
Scegli gli eventi che vuoi mettere nel volantino e premi genera.
2023-11-13 00:39:49 +01:00
< br >
2023-10-17 22:55:48 +02:00
Per stampare fai "File >> Stampa" Scegli come destinazione "Salva come PDF", seleziona il giusto formato di carta (A3) e ricordati di selezionare anche "Print background".
2023-10-09 17:52:29 +02:00
< br >
2023-10-17 22:54:31 +02:00
L'attuale layout può contenere fino a < span id = "maxEvents" > < / span > eventi.
2023-10-09 17:52:29 +02:00
< / div >
2023-10-16 18:35:45 +02:00
< br >
2023-10-09 17:52:29 +02:00
< form action = "/flyer" target = "_blank" >
2023-11-13 00:39:49 +01:00
< label for = "template" > Scegli un template: < / label >
2023-10-17 22:54:31 +02:00
< select onchange = "templateSelected(this.value)" id = "template" name = "template" >
2023-10-17 20:18:31 +02:00
{% for template in templates %}
2023-10-17 22:37:02 +02:00
< option value = "{{template.name}}" > {{template.name}}< / option >
2023-11-13 00:39:49 +01:00
{% endfor %}
< / select >
< br > < br >
2023-10-17 20:18:31 +02:00
{% for event in events %}
2023-10-17 22:37:02 +02:00
< input type = "checkbox" id = "{{event.id}}" name = "events" value = "{{event.id}}" >
2023-10-09 17:52:29 +02:00
< label for = "{{event.id}}" > {{loop.index}} [ {{event.when}} ] {{ event.title }}< / label > < br >
{% endfor %}
2023-11-13 00:39:49 +01:00
< br >
< input type = "submit" value = "Genera il volantino" >
2023-10-09 17:52:29 +02:00
< / form >
2023-10-17 22:37:02 +02:00
< script >
const templates={{templates|tojson}}
2023-10-17 22:54:31 +02:00
function templateSelected(templateName) {
const template = templates.find((t) => t.name == templateName)
2023-10-17 22:37:02 +02:00
const events = document.querySelectorAll("[name=events]")
2023-10-17 22:54:31 +02:00
document.querySelector("#maxEvents").innerHTML = template.maxEvents
2023-10-17 22:37:02 +02:00
var maxEvents = template.maxEvents
events.forEach((e) => {
e.checked = maxEvents > 0
maxEvents--
})
}
2023-10-17 22:54:31 +02:00
document.querySelector("#template").value = "{{default_template}}"
templateSelected("{{default_template}}")
2023-10-17 22:37:02 +02:00
< / script >
2023-11-30 00:05:03 +01:00
< / body >
< / html >