]> ToastFreeware Gitweb - philipp/winterrodeln/wradmin.git/blob - wradmin/templates/rodelbahn_list.html
754ef89952184fe6ceeabdf22dbbbc7e5d4a0029
[philipp/winterrodeln/wradmin.git] / wradmin / templates / rodelbahn_list.html
1 <?xml version="1.0" encoding="ISO-8859-1"?>
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
3                       "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
4 <html xmlns="http://www.w3.org/1999/xhtml"
5     xmlns:py="http://genshi.edgewall.org/"
6     xmlns:xi="http://www.w3.org/2001/XInclude">
7 <xi:include href="master.html" />
8
9 <head>
10     <title>Rodelbahnen</title>
11 </head>
12
13 <body>
14 <h2>Rodelbahnen</h2>
15
16 <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>
17
18 <a href="${h.url(controller='rodelbahn', action='update')}" class="button">(1) Rodelbahnboxen auslesen und DB aktualisieren</a>
19 <a href="${h.url(controller='rodelbahn', action='update_regioncache')}" class="button">(2) Rodelbahnen in den Regionslisten aktualisieren</a>
20
21 <p>${Markup(c.paginator.pager('$link_first $link_previous $first_item bis $last_item von $item_count $link_next $link_last'))}</p>
22
23 <table>
24     <tr>
25         <th>ID</th>
26         <th>Name</th>
27         <th>Länge</th>
28         <th>Gehzeit</th>
29         <th>Höhe (oben)</th>
30         <th>Höhe (unten)</th>
31         <th>Aufstieg möglich</th>
32         <th>Aufstieg getrennt</th>
33         <th>Lift</th>
34         <th>Licht</th>
35         <th>Rodelverleih</th>
36         <th>Öffentl. Anreise</th>
37         <th>Bild</th>
38         <th>Latitude</th>
39         <th>Longitude</th>
40         <th>Information</th>
41         <th>Forum-ID</th>
42         <th>In Arbeit</th>
43         <th>In Übersicht</th>
44     </tr>
45     <tr py:for="s in c.paginator">
46         <td><a href="${h.url(controller='rodelbahn', action='view', id=s.page_id)}">${s.page_id}</a></td>
47         <td>${s.page_title}</td>
48         <td>${s.length}</td>
49         <td>${s.walkup_time}</td>
50         <td>${s.top_elevation}</td>
51         <td>${s.bottom_elevation}</td>
52         <td>${h.bool(s.walkup_possible)}</td>
53         <td>${h.tristate_float(s.walkup_separate)}</td>
54         <td>${h.bool(s.lift)}</td>
55         <td>${h.tristate_float(s.night_light)}</td>
56         <td>${h.bool(s.sled_rental)}</td>
57         <td>${h.public_transport(s.public_transport)}</td>
58         <td><small>${s.image}</small></td>
59         <td>${s.position_latitude}</td>
60         <td>${s.position_longitude}</td>
61         <td>${s.information_phone}</td>
62         <td>${s.forum_id}</td>
63         <td>${h.bool(s.under_construction)}</td>
64         <td>${h.bool(s.show_in_overview)}</td>
65     </tr>
66 </table>
67
68 <p>${Markup(c.paginator.pager('~2~'))}</p>
69
70 </body>
71 </html>