gancio-flyers/templates/index.html
2023-10-17 19:08:20 +02:00

17 lines
711 B
HTML

<!doctype html>
<title>Generatore di volantini</title>
<h3> Generatore di volantini per balotta.org</h3>
<div>
Scegli gli eventi che vuoi mettere nel volantino e premi genera.
Per stampare fai "File >> Stampa" Scegli come destinazione "Salva come PDF" e seleziona il giusto formato di carta (A3).
<br>
L'attuale layout può contenere fino a 24 eventi.
</div>
<br>
<form action="/flyer" target="_blank">
{% for event in events %}
<input type="checkbox" {% if loop.index <= 12 %} checked {% endif %} id="{{event.id}}" name="events" value="{{event.id}}">
<label for="{{event.id}}"> {{loop.index}} [ {{event.when}} ] {{ event.title }}</label><br>
{% endfor %}
<input type="submit" value="Genera volantino">
</form>