{% extends 'base.html' %}
{% block header %}
{% 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
Name |
Beschreibung |
Geplant für |
{% for am in awarenessmeasures_past %}
{{ 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 }} |
{% endfor %}
dieser Monat
Name |
Beschreibung |
Geplant für |
{% for am in awarenessmeasures_this_month %}
{{ 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 }} |
{% endfor %}
nächster Monat
Name |
Beschreibung |
Geplant für |
{% for am in awarenessmeasures_next_month %}
{{ 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 }} |
{% endfor %}
ohne Datum
Name |
Beschreibung |
{% for am in awarenessmeasures_without_date %}
{{ am['name'] if am is defined and am['name'] is defined }} |
{{ am['description'] if am is defined and am['description'] is defined }} |
{% endfor %}
Rechtliche Abklärung
Name |
Beschreibung |
rechtliche Beschreibung |
{% for am in awarenessmeasures_with_legal_attention %}
{{ am['name'] if am is defined and am['name'] is defined }} |
{{ am['description'] if am is defined and am['description'] is defined }} |
{{ am['legal_description'] if am is defined and am['legal_description'] is defined }} |
{% endfor %}
{% endblock %}