{% extends 'base.html' %} {% block header %}
Export
Zum technischen Dashboard

{% block title %}Projektdetails{% endblock %}

Name: {{ project["name"] }}
Beschreibung: {{ project["description"] }}
{% if project["start_date"] is defined %} Startdatum: {{ project["start_date"] }}
{% endif %} {% if project["end_date"] is defined %} Enddatum: {{ project["end_date"] }} {% endif %}
{% endblock %} {% block content %}

Awareness Planung


Vergangenheit

{% for am in awarenessmeasures_past %} {% endfor %}
Name Beschreibung Geplant für
{{ am['name'] if am is defined and am['name'] is defined }} {{ am['description'] if am is defined and am['description'] is defined }} {{ am['due_date'].strftime("%d.%m.%Y") if am['due_date'] is defined and am['due_date'] is not none }}

dieser Monat

{% for am in awarenessmeasures_this_month %} {% endfor %}
Name Beschreibung Geplant für
{{ am['name'] if am is defined and am['name'] is defined }} {{ am['description'] if am is defined and am['description'] is defined }} {{ am['due_date'].strftime("%d.%m.%Y") if am['due_date'] is defined and am['due_date'] is not none }}

kommender Monat

{% for am in awarenessmeasures_next_month %} {% endfor %}
Name Beschreibung Geplant für
{{ am['name'] if am is defined and am['name'] is defined }} {{ am['description'] if am is defined and am['description'] is defined }} {{ am['due_date'].strftime("%d.%m.%Y") if am['due_date'] is defined and am['due_date'] is not none }}

ohne Datum

{% for am in awarenessmeasures_without_date %} {% endfor %}
Name Beschreibung
{{ am['name'] if am is defined and am['name'] is defined }} {{ am['description'] if am is defined and am['description'] is defined }}

Rechtliche Abklärung

{% for am in awarenessmeasures_with_legal_attention %} {% endfor %}
Name Beschreibung
{{ am['name'] if am is defined and am['name'] is defined }} {{ am['description'] if am is defined and am['description'] is defined }}
{% endblock %}