{% extends 'lofardata/base.html' %} {% load static %} {% load crispy_forms_tags %} {% load define_action %} {% block myBlock %} {% if user.is_authenticated %}

Work Specifications

{% if ungrouped_work_specifications.exists %}
{% include 'lofardata/overview_templates/group_actions.html' with group=None checked="checked" %}
{% 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 checked="unchecked" %}
{% 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 %}
{% endfor %} {% else %}

Welcome to the LDV Specification tool

Log in to see/add/update work specifications

{% endif %} {% endblock %}