{% extends "monthplan/base.html" %} {% block content %} {% for item in seq %} {% if observations %} {% for obs in observations %} {% if item == obs.row %} {% endif %} {% endfor %} {% endif %} {% if scans %} {% for scan in scans %} {% if item == scan.row %} {% endif %} {% endfor %} {% endif %} {% if seances %} {% for seance in seances %} {% if item == seance.row %} {% endif %} {% endfor %} {% endif %} {% if corrections %} {% for cor in corrections %} {% if item == cor.row %} {% endif %} {% endfor %} {% endif %} {% if surveys %} {% for sur in surveys %} {% if item == sur.row %} {% endif %} {% endfor %} {% endif %} {% endfor %}
{{ item }} {{ obs.start|date:"d M Y H:i:s" }} {{ obs.stop|date:"d M Y H:i:s" }} {{ obs.experiment }}{{ obs.ra|floatformat:4 }}{{ obs.dec|floatformat:4 }}{{ obs.target }}
{{ item }} {{ scan.start|date:"d M Y H:i:s" }} {{ scan.stop|date:"d M Y H:i:s" }} {{ scan.experiment }}{{ scan.target }} T{{ scan.template }}
{{ item }} {{ seance.start|date:"d M Y H:i:s" }} {{ seance.stop|date:"d M Y H:i:s" }} {{ seance.stations }}
{{ item }} {{ cor.start|date:"d M Y H:i:s" }}{{ cor.stop|date:"d M Y H:i:s" }} IMPSTART: {{ cor.impstart }}
{{ item }} {{ sur.start|date:"d M Y H:i:s" }} {{ sur.stop|date:"d M Y H:i:s" }} {{ sur.experiment }}{{ sur.ra_p }}{{ sur.dec_p }}
{% endblock %}