{% include 'lofardata/overview_templates/group_actions.html' with group=None %}
{% include 'lofardata/overview_templates/table_header.html' with id="ungrouped" %}
{% for specification in ungrouped_work_specifications %}
{% include 'lofardata/overview_templates/table_entry.html' with specification=specification id="ungrouped"%}
{% endfor %}
{% endif %}
{% for group in object_list %}
{% include 'lofardata/overview_templates/group_actions.html' with group=group %}
{% include 'lofardata/overview_templates/table_header.html' with id=group.name %}
{% for specification in group.workspecification_set.all %}
{% include 'lofardata/overview_templates/table_entry.html' with specification=specification id=group.name%}
{% endfor %}