{% extends "base.html" %} {% block title %}Dashboard{% endblock %} {% block content %}

Dashboard

{{ tests|length }}

Test Cases

{{ protocols_count }}

Protocols

{{ implementations_count }}

Implementations

{{ services_count }}

Services

Available Test Cases
{% for test in tests %} {% endfor %}
Name Description Network Environment Iterations Services Actions
{% if has_attr(test, 'test_config') %}{{ safe_getattr(test.test_config, 'name', 'N/A') }}{% else %}{{ safe_getattr(test, 'name', 'N/A') }}{% endif %} {{ safe_getattr(test, 'description', safe_getattr(test.test_config, 'description', 'N/A') if has_attr(test, 'test_config') else 'N/A') }} {% if has_attr(test, 'test_config') and has_attr(test.test_config, 'network_environment') %} {{ safe_getattr(test.test_config.network_environment, 'type', 'N/A') }} {% elif has_attr(test, 'network_environment') %} {{ safe_getattr(test.network_environment, 'type', 'N/A') }} {% else %} N/A {% endif %} {{ safe_getattr(test, 'iterations', safe_getattr(test.test_config, 'iterations', 'N/A') if has_attr(test, 'test_config') else 'N/A') }} {{ safe_length(safe_getattr(test, 'services', {})) }}
{% endblock %}