gancio-flyers/templates/index.html

25 lines
934 B
HTML
Raw Normal View History

2023-10-09 17:52:29 +02:00
<!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>
2023-10-17 19:08:20 +02:00
L'attuale layout può contenere fino a 24 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-10-17 20:18:31 +02:00
<label for="template">Scegli un template</label>
<select id="template" name="template">
{% for template in templates %}
<option value="{{template}}">{{template}}</option>
{% endfor %}
</select>
<br>
{% for event in events %}
2023-10-17 20:04:23 +02:00
<input type="checkbox" {% if loop.index <= 24 %} checked {% endif %} 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 %}
<input type="submit" value="Genera volantino">
</form>