X-Git-Url: https://git.toastfreeware.priv.at/philipp/winterrodeln/wradmin.git/blobdiff_plain/c360d9f57e6db0d664db46005fcd1504300989b3..931867c3a0a3842dd9cad2a204ec79686deaf952:/wradmin/templates/rodelbahn_view.html diff --git a/wradmin/templates/rodelbahn_view.html b/wradmin/templates/rodelbahn_view.html index 25f9a44..7559fa6 100644 --- a/wradmin/templates/rodelbahn_view.html +++ b/wradmin/templates/rodelbahn_view.html @@ -1,138 +1,138 @@ - - - - +{% extends "master.html" %} +{% block title %}Rodelbahn {{sledding.page_title}}{% endblock %} - - Rodelbahn - - - -

Rodelbahn #${c.sledding.page_id}: ${c.sledding.page_title}

+{% block content %} +

Rodelbahn #{{sledding.page_id}}: {{sledding.page_title}}

Inhalt der Rodelbahnbox

- + - + - - + + - + - - + + - - + + - - + + - + - + - + - + - - + + - + - + - + - + - + - + - - + +
ID${c.sledding.page_id}{{sledding.page_id}}
Name${c.sledding.page_title}{{sledding.page_title}}
Länge${c.sledding.length}Länge{{sledding.length}}
Gehzeit${c.sledding.walkup_time}{{sledding.walkup_time}}
Höhe (oben)${c.sledding.top_elevation}Höhe (oben){{sledding.top_elevation}}
Höhe (unten)${c.sledding.bottom_elevation}Höhe (unten){{sledding.bottom_elevation}}
Aufstieg möglich${h.bool(c.sledding.walkup_possible)}Aufstieg möglich{{h.bool(sledding.walkup_possible)}}
Aufstieg getrennt${h.tristate_float(c.sledding.walkup_separate)}{{h.tristate_float(sledding.walkup_separate)}}
Lift${h.bool(c.sledding.lift)}{{h.bool(sledding.lift)}}
Licht${h.tristate_float(c.sledding.night_light)}{{h.tristate_float(sledding.night_light)}}
Rodelverleih${h.bool(c.sledding.sled_rental)}{{h.bool(sledding.sled_rental)}}
Öffentliche Anreise${h.public_transport(c.sledding.public_transport)}Öffentliche Anreise{{h.public_transport(sledding.public_transport)}}
Bild${c.sledding.image}{{sledding.image}}
Latitude${c.sledding.position_latitude}{{sledding.position_latitude}}
Longitude${c.sledding.position_longitude}{{sledding.position_longitude}}
Information${c.sledding.information_phone}{{sledding.information_phone}}
Forum-ID${c.sledding.forum_id}{{sledding.forum_id}}
In Arbeit${h.bool(c.sledding.under_construction)}{{h.bool(sledding.under_construction)}}
In Übersicht${h.bool(c.sledding.show_in_overview)}In Übersicht{{h.bool(sledding.show_in_overview)}}

Rodelbahnberichte

- -

${HTML(c.paginator.pager('$link_first $link_previous $first_item bis $last_item von $item_count $link_next $link_last', url=h.url(controller='rodelbahn', action='view', id=c.sledding.page_id) + '?page=$page'))}

+{% if paginator %} +

{{paginator.pager('$link_first $link_previous $first_item bis $last_item von $item_count $link_next $link_last') | safe}}

- - + + - - - - - - - - - - - + + + {% for r in paginator %} + + + + + + + + + + {% endfor %}
ID Datum EintragDatum UngültigDatum für BerichtDatum UngültigDatum für Bericht Zustand (1 bis 5) Beschreibung (WikiText) Autor-NameGelöscht
${r.id}${r.date_entry}${r.date_invalid}${r.date_report}${r.condition}${r.description}${r.author_name}${r.delete_date}Gelöscht
{{r.id}}{{r.date_entry}}{{r.date_invalid}}{{r.date_report}}{{r.condition}}{{r.description}}{{r.author_name}}{{r.delete_date}}
-

${HTML(c.paginator.pager('~2~', url=h.url(controller='rodelbahn', action='view', id=c.sledding.page_id) + '?page=$page'))}

-
- +

{{paginator.pager('~2~') | safe}}

+ +{% else %}

Es sind keine Rodelbahnberichte zu dieser Rodelbahn vorhanden.

-
- - +{% endif %} + +{% endblock %}