]> ToastFreeware Gitweb - philipp/winterrodeln/wradmin.git/blob - wradmin/wradmin/templates/rodelbahn_list.html
b9ffe04a97a1f44e1eaefa9dfc130dc5598ce89e
[philipp/winterrodeln/wradmin.git] / wradmin / 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_for(controller='rodelbahn', action='update')}" class="button">Rodelbahnboxen auslesen und DB aktualisieren</a>
19
20 <p>${c.paginator.pager('$link_first $link_previous $first_item bis $last_item von $item_count $link_next $link_last', controller='rodelbahn', action='list')}</p>
21
22 <table>
23     <tr>
24         <th>ID</th>
25         <th>Name</th>
26         <th>Länge</th>
27         <th>Gehzeit</th>
28         <th>Höhe (oben)</th>
29         <th>Höhe (unten)</th>
30         <th>Aufstieg getrennt</th>
31         <th>Lift</th>
32         <th>Licht</th>
33         <th>Rodelverleih</th>
34         <th>Öffentl. Anreise</th>
35         <th>Bild</th>
36         <th>Latitude</th>
37         <th>Longitude</th>
38         <th>Information</th>
39         <th>Forum-ID</th>
40         <th>In Arbeit</th>
41         <th>In Übersicht</th>
42     </tr>
43     <tr py:for="s in c.paginator">
44         <td><a href="${h.url_for(controller='rodelbahn', action='view', id=s.page_id)}">${s.page_id}</a></td>
45         <td>${s.page_title}</td>
46         <td>${s.length}</td>
47         <td>${s.walktime}</td>
48         <td>${s.height_top}</td>
49         <td>${s.height_bottom}</td>
50         <td>${h.bool(s.walkup_separate)}</td>
51         <td>${h.bool(s.lift)}</td>
52         <td>${h.bool(s.night_light)}</td>
53         <td>${h.bool(s.sledge_rental)}</td>
54         <td>${h.bool(s.public_transport)}</td>
55         <td><small>${s.image}</small></td>
56         <td>${s.position_latitude}</td>
57         <td>${s.position_longitude}</td>
58         <td>${s.information}</td>
59         <td>${s.forum_id}</td>
60         <td>${h.bool(s.under_construction)}</td>
61         <td>${h.bool(s.show_in_overview)}</td>
62     </tr>
63 </table>
64
65 <p>${c.paginator.pager('~2~', controller='rodelbahn', action='list')}</p>
66
67 </body>
68 </html>