]> ToastFreeware Gitweb - philipp/winterrodeln/wradmin.git/blob - wradmin/templates/gasthaus_list.html
1fe0517f696905fea5478797c06d5fc544152a53
[philipp/winterrodeln/wradmin.git] / wradmin / templates / gasthaus_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>Gasthäuser</title>
11 </head>
12
13 <body>
14 <h2>Gasthäuser</h2>
15
16 <p>Die folgende Lise wurde automatisiert von den Gasthausboxen gesammelt. Da dies nicht automatisch passiert, kann es sein, dass die Liste "veraltete" Information enthält.</p>
17
18 <p><a href="${h.url(controller='gasthaus', action='update')}" class="button">Gasthausboxen auslesen und DB aktualisieren</a></p>
19
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>Höhe</th>
28         <th>Telefon</th>
29         <th>E-Mail</th>
30         <th>Homepage</th>
31         <th>Rauchfrei</th>
32         <th>Bild</th>
33         <th>Latitude</th>
34         <th>Longitude</th>
35         <th>In Arbeit</th>
36     </tr>
37     <tr py:for="s in c.paginator">
38         <td><a href="${h.url(controller='gasthaus', action='view', id=s.page_id)}">${s.page_id}</a></td>
39         <td>${s.page_title}</td>
40         <td>${s.position_elevation}</td>
41         <td>${s.phone_list}</td>
42         <td>${s.email_list}</td>
43         <td>${s.homepage}</td>
44         <td>${h.tristate_tuple(s.nonsmoker_area, s.smoker_area)}</td>
45         <td><small>${s.image}</small></td>
46         <td>${s.position_latitude}</td>
47         <td>${s.position_longitude}</td>
48         <td>${h.bool(s.under_construction)}</td>
49     </tr>
50 </table>
51
52 <p>${Markup(c.paginator.pager('~2~'))}</p>
53
54 </body>
55 </html>