+
+
{{ res.name }}
+ {% if item.has_conflicts %}
+
+ {{ item.conflict_count }} conflict{{ 's' if item.conflict_count != 1 else '' }}
+
+ {% endif %}
+
+
+ {{ res.start_date.strftime('%b %d, %Y') }} -
+ {% if res.end_date %}
+ {{ res.end_date.strftime('%b %d, %Y') }}
+ {% elif res.end_date_tbd %}
+ TBD
+ {% if res.estimated_end_date %}
+ (est. {{ res.estimated_end_date.strftime('%b %d, %Y') }})
+ {% endif %}
+ {% else %}
+ Ongoing
+ {% endif %}
+
+ {% if res.notes %}
+
{{ res.notes }}
+ {% endif %}
+
+
+ {% if res.assignment_type == 'quantity' %}
+ {{ item.assigned_count }}/{{ res.quantity_needed or '?' }}
+ {% else %}
+ {{ item.assigned_count }}
+ {% endif %}
+
+
+ {{ 'units needed' if res.assignment_type == 'quantity' else 'units assigned' }}
+
+