{% extends 'tom_common/base.html' %} {% load bootstrap4 static cache %} {% block title %} Data Product List {% endblock %} {% block additional_css %} {% endblock %} {% block content %}
{% bootstrap_pagination page_obj extra=request.GET.urlencode %}
{% for product in object_list %} {% if product.observation_record.id %} {% else %} {% endif %} {% if product.get_file_extension == '.fz' or product.get_file_extension == '.fits' %} {% else %} {% endif %} {% empty %} {% endfor %}
File Target Observation Groups Tag Thumbnail
{{ product.get_file_name }} {{ product.target.identifier }}{{ product.observation_record }} {% for group in product.group.all %} {{ group.name }} {% endfor %} {% if product.tag %} {{ product.get_tag_display }} {% else %} set tag {% endif %} {% cache None thumbnail product.id %} {% endcache %}
No data yet. You might want to save some data products from your completed observations.
{% bootstrap_pagination page_obj extra=request.GET.urlencode %}
{% bootstrap_form filter.form %} {% buttons %} Reset {% endbuttons %}
Data Groups
{% for group in product_groups %}

{{ group.name }}
Products: {{ group.dataproduct_set.count }}

{% endfor %} Manage groups
{% endblock %}