{% extends "base.html" %} {% load navigation_tags %} {% load display_tags %} {% load authorization_tags %} {% block content %} {{ block.super }}

Engagements

{% include "dojo/filter_snippet.html" with form=filter_form %}
{% if products %}
{% include "dojo/paging_snippet.html" with page=products page_size=True %}
{% if system_settings.enable_jira %} {% endif %} {% for p in products %} {% for e in p.engagement_set.all %} {% if system_settings.enable_jira %} {% endif %} {% endfor %} {% endfor %}
Product Product Type Engagement NameJIRAStatus Period Lead Tests Engagement
{{ p.name }} {% include "dojo/snippets/tags.html" with tags=p.tags.all %} {{ p.prod_type.name }} {% if e.name %}{{ e.name }}{% endif %} {% include "dojo/snippets/tags.html" with tags=e.tags.all %}
{{ e|jira_project_tag }} {{ e.status }} {{ e.target_start }} - {{ e.target_end }} {% if e.is_overdue and e.active %}
{{ e.target_end|overdue }} overdue
{% endif %}
{{ e.lead.first_name }} {{ e.lead.last_name }} {{ e.test_count }} {% if p|has_object_permission:"Engagement_Add" %} Add {% endif %}
{% include "dojo/paging_snippet.html" with page=products page_size=True %}
{% else %}
No engagements found
{% endif %}
{% endblock %} {% block postscript %} {{ block.super }} {% include "dojo/filter_js_snippet.html" %} {% endblock %}