{% extends "monthplan/base.html" %} {% block header %}{% endblock %} {% block content %} {% if observation %} {% endif %}
All observations
{{ observation.start|date:"d M Y H:i:s" }} {{ observation.stop|date:"d M Y H:i:s" }} {{ observation.experiment }}{{ observation.ra|floatformat:4 }}{{ observation.dec|floatformat:4 }}{{ observation.target }}
{% if observations %} {% for obs in observations %} {% endfor %} {% endif %} {% if scans %} {% for scan in scans %} {% endfor %} {% endif %} {% if surveys %} {% for survey in surveys %} {% endfor %} {% endif %}
All observations
{{ obs.start|date:"d M Y H:i" }} {{ obs.stop|date:"d M Y H:i" }} {{ obs.experiment }} {{ obs.target }} {% if user.is_authenticated %}{{ obs.head.get_datetime_middle|date:"F Y" }}{% endif %}
All scans
{{ scan.start|date:"d M Y H:i" }} {{ scan.stop|date:"d M Y H:i" }} {{ scan.experiment }}{{ scan.target }} {% if scan.template %}(T{{ scan.template }}){% endif %} {% if user.is_authenticated %}{{ scan.head.get_datetime_middle|date:"F Y" }}{% endif %}
Start Stop ObsID Z Speed Plan
{{ survey.start|date:"d M Y H:i" }} {{ survey.stop|date:"d M Y H:i" }} {{ survey.experiment }} {{ survey.z_speed|floatformat:2 }} {% if user.is_authenticated %}{{ survey.head.get_datetime_middle|date:"F Y" }}{% endif %}
{% endblock %}