Browse Source

autoselezione 24 eventi

encrypt 10 months ago
parent
commit
288335f563
1 changed files with 1 additions and 1 deletions
  1. 1 1
      templates/index.html

+ 1 - 1
templates/index.html

@@ -10,7 +10,7 @@ L'attuale layout può contenere fino a 24 eventi.
 <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}}">
+<input type="checkbox" {% if loop.index <= 24 %} 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">