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

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

Name: {{ project["name"] }}
Beschreibung: {{ project["description"] }}
{% if project["start_date"] is defined %} Startdatum: {{ project["start_date"].strftime('%d.%m.%Y') }}
{% endif %} {% if project["end_date"] is defined and project["end_date"] is not none %} Enddatum: {{ project["end_date"].strftime('%d.%m.%Y') }} {% endif %}
{% endblock %} {% block content %}

{% for threat in calculated_threats %} {% endfor %}
Priorität Bedrohung tech./org. Gegenmaßnahmen betroffene MA-Gruppe Awarenessmaßnahmen Rechtliche Abklärung
{{ threat['priority'] if threat is defined and threat['priority'] is defined }} {{ threat['name'] }} {{ threat['countermeasures_names']|join(', ') if threat is defined and threat['countermeasures'] is defined }} {{ threat['affected_employees']|join(', ') if threat is defined and threat['affected_employees'] is defined }} {{ threat['awarenessmeasures_names']|join(', ') if threat is defined and threat['awarenessmeasures_names'] is defined }} {{ threat['awarenessmeasures_legal_descriptions']|join(', ') if threat is defined and threat['awarenessmeasures_legal_descriptions'] is defined }}

Technisch offene Themen


{% for cm in countermeasures_open %} {% endfor %}
Name Beschreibung
{{ cm['name'] if cm is defined and cm['name'] is defined }} {{ cm['description'][:50] + " ..." if cm['description']|length > 50 else cm['description'] }}
{% endblock %}