{% extends 'generic/object.html' %} {% load validity %} {% load render_table from django_tables2 %} {% block controls %}
{% endblock %} {% block content %}
Compliance Test Results
ID {{ object.id }}
Test {{ object.test | linkify }}
Test Severity {{ object.test | colored_choice:"severity" }}
Device {{ object.device | linkify }}
Dynamic Pair {{ object.dynamic_pair | linkify | placeholder }}
Result {% if object.passed %} PASSED {% else %} FAILED {% endif %}
Created {{ object.created | date:"Y-m-d G:i:s" }}
Explanation
{% render_table explanation_table %}
Other results for the same test and device
{% render_table result_table %}
{%include 'inc/paginator.html' with paginator=result_table.paginator page=result_table.page%}
{% endblock content %}