{% if theory_experiment_groups %}
Research: theory & experiments
{% endif %}
{% for group in theory_experiment_groups %}
{% include "group_item.html" with group=group %}
{% endfor %}
{% if theory_groups %}
Research: theory
{% endif %}
{% for group in theory_groups %}
{% include "group_item.html" with group=group %}
{% endfor %}
{% if experiment_groups %}
Research: experiments
{% endif %}
{% for group in experiment_groups %}
{% include "group_item.html" with group=group %}
{% endfor %}
{% if facility_groups %}
Support: facilities
{% endif %}
{% for group in facility_groups %}
{% include "group_item.html" with group=group %}
{% endfor %}
{% if incubation_groups %}
On Prem Transfer: incubation
{% endif %}
{% for group in incubation_groups %}
{% include "group_item.html" with group=group %}
{% endfor %}
{% if non_active_groups %}
Old Groups
{% endif %}
{% for group in non_active_groups %}
{% include "group_item.html" with group=group %}
{% endfor %}