{% extends "base.html" %} {% block title %}Meine Fahrten – PBT{% endblock %} {% block head %} {% if show_map %} {% endif %} {% endblock %} {% block content %}

Meine Fahrten

{% if not fahrten %}

Noch keine Fahrten erfasst.

Erste Fahrt hinzufügen
{% else %} {% for f in fahrten %} {% if f.comment %} {% endif %} {% endfor %}
Datum Verkehrsmittel Linie Strecke Bewertung
{{ f.trip_date.strftime("%d.%m.%Y") }} {{ f.transport_mode }} {{ f.line or "–" }} {% if f.course %}
{{ f.course }}{% endif %}
{{ f.origin }}{% if f.origin_stop %}{% endif %} → {{ f.destination }}{% if f.destination_stop %}{% endif %} {{ "★" * f.rating }}{{ "☆" * (5 - f.rating) }}
{% if show_map %} {% endif %}
{{ f.comment }}
{% endif %} {% if show_map %}
{% endif %} {% endblock %} {% block scripts %} {% if show_map %} {% endif %} {% endblock %}