{% extends 'tom_common/base.html' %} {% load bootstrap4 observation_extras %} {% block title %}Observations{% endblock %} {% block content %}
{% bootstrap_pagination page_obj extra=request.GET.urlencode %}
{% update_status_button %}
{% observation_distribution filter.qs %}
Selected observations from group {{ filter.form.observationgroup }}
{% for observation in filter.qs %} {% empty %} {% endfor %}
Select View Target Facility Status Start End Groups Saved Data Download All
Details {{ observation.target.names|join:", " }} {{ observation.facility }} {{ observation.status }} {{ observation.scheduled_start }} {{ observation.scheduled_end }} {% for o in observation.observationgroup_set.all %}{{ o.name }} {% endfor %} {{ observation.dataproduct_set.count }} {% if observation.status == 'COMPLETED' %} {% csrf_token %} {% endif %}
No observations yet. You might want to create an observation from one of your saved targets.
{% bootstrap_pagination page_obj extra=request.GET.urlencode %}
{% bootstrap_form filter.form %} {% buttons %} Reset {% endbuttons %}
{% endblock %}