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

Active Engagements


{% if products %}
{% for p in products %} {% endfor %}
Product Active Engagements
{{ p.name }} {% for e in p.engagement_set.all %} {% if e.active %} {% if e.name %}{{ e.name }} {% endif %}{{ e.target_start }} {% endif %} {% endfor %}
{% include "dojo/paging_snippet.html" with page=products %} {% else %}
No active engagements
{% endif %}
Actions
Filters
{{ filtered.form.as_p }}
{% endblock %} {% block postscript %} {% endblock %}