{% extends "monthplan/base.html" %} {% block content %} {% if seances %} {% for seance in seances %} {% endfor %} {% endif %} {% if corrections %} {% for cor in corrections %} {% endfor %} {% endif %} {% if observations %} {% for obs in observations %} {% endfor %} {% endif %} {% if scans %} {% for scan in scans %} {% endfor %} {% endif %} {% if surveys %} {% for survey in surveys %} {% endfor %} {% endif %}
Seances
{{ seance.start|date:"d M Y H:i:s" }} {{ seance.stop|date:"d M Y H:i:s" }} {{ seance.stations }}
Corrections
{{ cor.start|date:"d M Y H:i:s" }}{{ cor.stop|date:"d M Y H:i:s" }}IMPSTART: {{ cor.impstart|date:"d M Y H:i:s" }}
Observations
{{ 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 }}
Сканирующие наблюдения участков неба
{{ scan.start|date:"d M Y H:i:s" }} {{ scan.stop|date:"d M Y H:i:s" }} {{ scan.experiment }}{{ scan.target }}template {{ scan.template }}
Обзоры неба
{{ survey.start|date:"d M Y H:i:s" }} {{ survey.stop|date:"d M Y H:i:s" }} {{ survey.experiment }}{{ survey.target }} ra_p: {{ survey.ra_p }}, dec_p: {{ survey.dec_p }},
ra_z0: {{ survey.ra_z0 }}, dec_z0: {{ survey.dec_z0 }},
ra_zk: {{ survey.ra_zk }}, dec_zk: {{ survey.dec_zk }},
z_speed: {{ survey.z_speed }}
{% endblock %}