]> ToastFreeware Gitweb - philipp/winterrodeln/wradmin.git/blob - wradmin/templates/bericht_list.html
49f07f3cddd34384fae11ac4703c1fa6edb4b860
[philipp/winterrodeln/wradmin.git] / wradmin / templates / bericht_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>Rodelbahnberichte</title>
11 </head>
12
13 <body>
14 <h2>Rodelbahnberichte</h2>
15
16 <p>${HTML(c.paginator.pager('$link_first $link_previous $first_item bis $last_item von $item_count $link_next $link_last'))}</p>
17
18 <table>
19     <tr>
20         <th>ID</th>
21         <th>Seite</th>
22         <th>Datum Eintrag</th>
23         <th>Datum Ungültig</th>
24         <th>Datum für Bericht</th>
25         <th>Zustand (1 bis 5)</th>
26         <th>Beschreibung (WikiText)</th>
27         <th>Autor-Name</th>
28         <th>Gelöscht</th>
29     </tr>
30     <tr py:for="r in c.paginator">
31         <td><a href="${h.url(controller='bericht', action='view', id=r.id)}">${r.id}</a></td>
32         <td>${r.page_title}</td>
33         <td>${r.date_entry}</td>
34         <td>${r.date_invalid}</td>
35         <td>${r.date_report}</td>
36         <td>${r.condition}</td>
37         <td>${r.description}</td>
38         <td>${r.author_name}</td>
39         <td>${r.delete_date}</td>
40     </tr>
41 </table>
42
43 <p>${HTML(c.paginator.pager('~2~'))}</p>
44
45 </body>
46 </html>