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

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

{% endblock %} {% block content %}
{% for threat in threats %} {% if threat['description']|length > 50 %} {% else %} {% endif %} {% endfor %}
Priorität Name Beschreibung tech./org. Gegenmaßnahmen Betroffene Mitarbeiter 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] + " ..." }}{{ threat['description'] }}{{ threat['countermeasure_names']|join(', ') }}
Zuordnen
{{ threat['employee_names']|join(', ') }}
Zuordnen
{{ threat['awarenessmeasure_names']|join(', ') }}
Zuordnen
{% include 'helper/delete-dialog.html' %} {% endblock %}