1 {% extends "master.html" %}
2 {% block title %}Rodelbahnen{% endblock %}
7 <p>Die folgende Lise wurde automatisiert von den Rodelbahnboxen gesammelt. Da dies nicht automatisch passiert, kann es sein, dass die Liste "veraltete" Information enthält.</p>
9 <a href="{{url_for('rodelbahn_update')}}" class="button">(1) Rodelbahnboxen auslesen und DB aktualisieren</a>
10 <a href="{{url_for('rodelbahn_update_regioncache')}}" class="button">(2) Rodelbahnen in den Regionslisten aktualisieren</a>
11 <a href="{{url_for('rodelbahn_update_mapcache')}}" class="button">(3) Landkarten aktualisieren</a>
13 <p>{{paginator.pager('$link_first $link_previous $first_item bis $last_item von $item_count $link_next $link_last') | safe}}</p>
23 <th>Aufstieg möglich</th>
24 <th>Aufstieg getrennt</th>
28 <th>Öffentl. Anreise</th>
37 {% for s in paginator %}
39 <td><a href="{{url_for('rodelbahn_view', id=s.page_id)}}">{{s.page_id}}</a></td>
40 <td>{{s.page_title}}</td>
42 <td>{{s.walkup_time}}</td>
43 <td>{{s.top_elevation}}</td>
44 <td>{{s.bottom_elevation}}</td>
45 <td>{{h.bool(s.walkup_possible)}}</td>
46 <td>{{h.tristate_float(s.walkup_separate)}}</td>
47 <td>{{h.bool(s.lift)}}</td>
48 <td>{{h.tristate_float(s.night_light)}}</td>
49 <td>{{h.bool(s.sled_rental)}}</td>
50 <td>{{h.public_transport(s.public_transport)}}</td>
51 <td><small>{{s.image}}</small></td>
52 <td>{{s.position_latitude}}</td>
53 <td>{{s.position_longitude}}</td>
54 <td>{{s.information_phone}}</td>
55 <td>{{s.forum_id}}</td>
56 <td>{{h.bool(s.under_construction)}}</td>
57 <td>{{h.bool(s.show_in_overview)}}</td>
62 <p>{{paginator.pager('~2~') | safe}}</p>