{% extends "base.html" %} {% block content %}
VVF

{{ 'Add training'|t }}


{% if option('training_edit') %} {% endif %} {% if option('training_remove') %} {% endif %} {% for row in query_results %} {% if option('training_edit') %} {% endif %} {% if option('training_remove') %} {% endif %} {% endfor %}
{{ 'Date'|t }} {{ 'Name'|t }} {{ 'Start time'|t }} {{ 'End time'|t }} {{ 'Chief'|t }} {{ 'Crew'|t }} {{ 'Place'|t }} {{ 'Notes'|t }}{{ 'Edit'|t }}{{ 'Remove'|t }}
{{ row.date }} {{ row.name }} {{ row.beginning }} {{ row.end }} {{ username(row.chief) }} {{ username_list(row.crew) }} {% if "#" in row.place %} {% set mapImageID = row.place|split('#')[1] %} {% set place = row.place|split('#')[0] %} {% set place_lat = place|split(';')[0] %} {% set place_lng = place|split(';')[1] %}
{% endif %} Apri la mappa in Google Maps
Apri la mappa in OpenStreetMap
Lat: {{ place_lat }}
Lng: {{ place_lng }}
{{ row.notes }}ModificaRimuovi


{% endblock %}