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" />
10 <title>Rodelbahnberichte</title>
14 <h2>Rodelbahnberichte</h2>
16 <p>${c.paginator.pager('$link_first $link_previous $first_item bis $last_item von $item_count $link_next $link_last', controller='bericht', action='list')}</p>
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>
30 <tr py:for="r in c.paginator">
31 <td><a href="${h.url_for(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>
43 <p>${c.paginator.pager('~2~', controller='bericht', action='list')}</p>