{% extends 'core/lcars_app.html' %} {% load static %} {% block header_title %} AutoWISP Reductions Progress {% endblock header_title %} {% block extra_head %} {% endblock extra_head %} {% block app_title %} Processing Progress {% endblock app_title %} {% block left_menu %} {% if running %} {% if await_start >= 0 %}
Waiting to start {{ await_start }}
{% else %}
Processing
{% endif %} {% else %}
Start Processing
{% endif %}
Add New Images
{% endblock left_menu %} {% block main %} {% for channel in channels %} {% endfor %} {% for step, imtype, by_channel, runs in progress %} {% for success, failure, pending, by_status in by_channel %} {% with final=success|add:failure %} {% with total=final|add:pending %} {% endwith %} {% endwith %} {% endfor %} {% endfor %}
Step Image Type{{ channel }}
step configuration
{{ step|join:" " }}
{% if step.0 == 'fit' and step.1 == 'magnitudes' or step.0 == 'find' and step.1 == 'stars' %} {% if step.0 == 'fit' and step.1 == 'magnitudes' %} select reference image {% else %} tune source extraction {% endif %}
{{ imtype }}
{% else %} {{ imtype }} {% endif %}
{% for status, count in by_status %} {% endfor %}
{% if step.0 == 'calibrate' %} Review cilabration diagnostics {% url 'diagnostics:display_image_diagnostics' diagnostic_name='quantiles' as diagnostic_url %} {% elif step.0 == 'find' and step.1 == 'stars' %} Review star finding diagnostics {% url 'diagnostics:display_image_diagnostics' diagnostic_name='num_extracted_src' as diagnostic_url %} {% elif step.0 == 'solve' and step.1 == 'astrometry' %} Review astrometry diagnostics {% url 'diagnostics:display_image_diagnostics' diagnostic_name='pointing_offset' as diagnostic_url %} {% elif step.0 == 'fit' and step.1 == 'star' and step.2 == 'shape' %} Review star shepe fit diagnostics {% url 'diagnostics:display_image_diagnostics' diagnostic_name='bg_center' as diagnostic_url %} {% elif step.0 == 'measure' and step.1 == 'aperture' and step.2 == 'photometry' %} Review aperture photometry diagnostics {% url 'diagnostics:display_image_diagnostics' diagnostic_name='bg_center' as diagnostic_url %} {% elif step.0 == 'fit' and step.1 == 'source' and step.2 == 'extracted' and step.4 == 'map' %} Review source extraction PSF diagnostics {% url 'diagnostics:display_image_diagnostics' diagnostic_name='s_center' as diagnostic_url %} {% elif step.0 == 'fit' and step.1 == 'magnitudes' or step.0 == 'epd' or step.0 == 'tfa' or step.1 == 'epd' or step.1 == 'tfa' %} Review magnitude fitting performance {% url 'diagnostics:display_detrending_diagnostics' as diagnostic_url %} {% endif %} {% if diagnostic_url %} {% endif %}
{{success}}/{{total}} {% if failure > 0 %} | {{failure}}/{{total}} {% endif %}
{% if diagnostic_url %} {% endif %}
Status {{ status }}
{{count}}/{{pending}}
{% endblock main %} {% block scripts %} {% if refresh_seconds %} {% if await_start >= 0 %} {% url 'processing:progress' await_start=await_start as refresh_url%} {% else %} {% url 'processing:progress' as refresh_url%} {% endif %} {% endif %} {% endblock %}