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

Active Engagements

{% include "dojo/filter_snippet.html" with form=filtered.form %}
{% if products %}
{% include "dojo/paging_snippet.html" with page=products page_size=True %}
{% if user.is_staff %} {% endif %} {% for p in products %} {% if user.is_staff %} {% endif %} {% endfor %}
{% dojo_sort request 'Product' 'name' 'asc' %} {% dojo_sort request 'Product Type' 'prod_type__name' %} Active Engagements Engagement
{{ p.name }} {% for tag in p.tags %} {{ tag }} {% endfor %} {{ p.prod_type.name }} {% for e in p.engagement_set.all %} {% if e.active %}
{% if e.name %}{{ e.name }} {% endif %}{{ e.target_start }} | Lead: {{ e.lead.first_name }} | {% for test in e.test_set.all %} {% if test.lead %} {{ test }}: {{ test.lead.first_name }} | {% else %} {{ test }} | {% endif %} {% endfor %}
{% for tag in e.tags %} {{ tag }} {% endfor %} {% endif %} {% endfor %}
Add
{% include "dojo/paging_snippet.html" with page=products page_size=True %}
{% else %}
No active engagements
{% endif %}
{% endblock %} {% block postscript %} {% include "dojo/filter_js_snippet.html" %} {% endblock %}