{% extends "base.html" %} {% block extrahead %} {% if sub.is_finished %} {% else %} {% comment %} {% endcomment %} {% endif %} {% endblock extrahead %} {% block inline_css %} {{ block.super }} {% include 'job/status.css' %} {% endblock %} {% block javascript %} {{ block.super }} {% endblock %} {% block pagetitle %} Astrometry.net submission {{ sub.id }} {% endblock %} {% block title %} Submission {{ sub.id }} {% endblock %} {% block content %} {% if not finished %}
{% endif %}
|
Go to results page
{% for job in image.jobs.all %} Job {{ job.id }}: {% include "job/status.html" with job=job %} {% if image.image.is_source_list %} {% else %} Source extraction image (fullsize) {% endif %} Log file tail [-] Log file 2 {% empty %} Waiting for processing to start... {% endfor %} |
{% if sub.processing_finished and sub.error_message %}
Unfortunately, we couldn't process this submission properly:{{ sub.error_message }}{% else %} {% if sub.processing_finished and sub.user_images.count == 0 %} {# Avoid a race condition where a user_image has been created between when we checked above, and now. #} Unfortunately, we failed to identify your image. {% if sub.user.username == anonymous_username %} Since you are not logged in, we intentionally don't show your image here. (We don't want to host arbitrary images for anonymous users!) {% endif %} {% else %} Thanks for your submission! Please bear with us while we process it. Usually we will have results within 10 minutes. {% if sub.user.username == anonymous_username %}Please note: since you are not logged in, the contents and results of your submission will only be available upon a successful calibration. {% endif %} {% endif %} {% endif %} |