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

Experiments

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