{% extends 'base.html' %} {% block header %}

{% block title %}Bedrohungen für Projekt "{{ project['name'] }}"{% endblock %}

{% endblock %} {% block content %}
{% for threat in threats %} {% endfor %}
Priorität Name Beschreibung Betroffene Mitarbeiter tech./org. Gegenmaßnahmen Awarenessmaßnahmen Details Bearbeiten Löschen
{{ threat['priority'] if threat['priority'] is defined and threat['priority'] is not none else '' }}  {{ threat['name'] }} {{ threat['description'][:50] + " ..." if threat['description']|length > 50 else threat['description'] }} {{ threat['employee_names']|join(', ') }}
Zuordnen
{{ threat['countermeasure_names']|join(', ') }}
Zuordnen
{{ threat['awarenessmeasure_names']|join(', ') }}
Zuordnen
{% include 'helper/delete-dialog.html' %} {% endblock %}