{% extends "artsurvey/base.html" %} {% load heasarc_templates %} {% load simbadescape %} {% load i18n %} {% block header %}

{{ request.user.artsurveyparams.survey }} {{ request.user.artsurveyparams.get_band_display }} ({{ request.user.artsurveyparams.band }})

{% if request.user.artsurveyparams.survey.parent %}Parent: {{ request.user.artsurveyparams.survey.parent }}{% endif %}{% if request.user.artsurveyparams.survey.children.count %}Children: {% for child in request.user.artsurveyparams.survey.children.all %}{{ child }}{% endfor %}{% endif %}

{% if ntotal %}

Total {{ ntotal }}

{% endif %}
{% endblock %} {% block content %}
{% if histogram %}

HEASARC Matching Statistics within 40''

{% for key,value in histogram.items %} {{ key }}: {{ value.total }} | {% endfor %}

{% endif %} {% if reverse %}

HEASARC Reverse Match Statistics (more than one match)

{% for key,value in reverse.items %} {% if value.total > 1 %} {{ key }}: {{ value.total }} ({{ value.list|safe }})
{% endif %} {% endfor %}

{% endif %} {% if srcs %} {% for src in srcs %} {% if src.exclude == False %} {% endif %} {% endfor %}
Name RA Dec Flux DETLIKE CName Class Refs
N{{ forloop.counter|stringformat:"03d" }} &  {% if src.cname == 'NEW X-RAY SOURCE' %} {\bf {{ src.name }} } {% else %} {{ src.name }} {% endif %} & {{ src.ra|floatformat:4 }} & {{ src.dec|floatformat:4 }} & {{ src.get_flux_str_m11power }} & {{ src.get_detlike100 }} &  {% if not src.cname == 'NEW X-RAY SOURCE' %} {{ src.cname }} {% endif %} & {{ src.get_otype }} & {% if src.refs %}{{ src.refs }}{% endif %} \\

References

{% for key, value in refdict.items %} ({{ value }}) {{ key }}, {% endfor %}

Paper Notes

{% for src in srcs %}{% if src.notes_paper %}\subsection{ {{ src.name }} }
{{ src.notes_paper|safe }}
{% endif %}{% endfor %}

Bibtex for Paper Notes

{% for bib in bibtex_paper %}
{{ bib|safe }}
{% endfor %}

Bibtex for Source Papers

{% for bib in bibtex %}
{{ bib|safe }}
{% endfor %}
{% endif %}
{% endblock %}