{% extends "iop4admin/singleobj.html" %}
{% block content %}
{{ object.fileloc }}
{% if url_changelist is not None %}
Back to list
{% endif %}
{% if url_raw is not None %}
See raw file
{% endif %}
{% if url_reduced is not None %}
See reduced file
{% endif %}
{% if url_viewer is not None %}
See in advanced FITS viewer
{% endif %}
Fields
|
{% for k, v in fields_and_values.items %}
{% if v != "None" %}
{{ k }} |
{% endif %}
{% endfor %}
|
{% for k, v in fields_and_values.items %}
{% if v != "None" %}
{{ v }} |
{% endif %}
{% endfor %}
{% if object.fileexists %}
Summary statistics
{% for key in stats %}
{{ key }} |
{% endfor %}
{% for value in stats.values %}
{{ value | stringformat:".2g" }} |
{% endfor %}
Preview
Reduction information:
Calibration Frames
Astrometric calibration
Astrometry info:
{% for D in astrometry_info %}
{% for k,v in D.items %}
{{ k }} |
{{ v |truncatechars:500 }} |
{% endfor %}
{% endfor %}
Summary images (scroll horizontally)
{% for fname, imgb64 in astrometry_img_D.items reversed %}

{% empty %}
There are no images for astrometry.
{% endfor %}
Sources in the field
{% if sources_in_field_L %}
{% else %}
No sources found in this field.
{% endif %}
Results from this image
Not implemented.
FITS file headers:
{% for header in header_L %}
Header {{forloop.counter }}:
(scroll down)
{% endfor %}
{% else %}
Local file does not exist, FIT can not be opened.
{% endif %}
{{ block.super }}
{% endblock %}