55 lines
1.9 KiB
HTML
55 lines
1.9 KiB
HTML
|
|
{% extends "base.html" %}
|
|
|
|
{% block header %}
|
|
|
|
<a href="https://heasarc.gsfc.nasa.gov/cgi-bin/W3Browse/w3catindex.pl">HEASARC Catalog Resources Index <span class="glyphicon glyphicon-new-window"></span></a> |
|
|
<a href="/heasarc/types">HEASARC Object Classification</a>
|
|
|
|
<h3>Loaded HEASARC table descriptions:</h3>
|
|
<ul>
|
|
{% for table in tables %}
|
|
<li><a href="{{ table.get_absolute_url }}">{{ table.name }}</a> <b>{{ table.description }}</b></li>
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
{% endblock %}
|
|
{% block precontent %}{% endblock %}
|
|
{% block content %}
|
|
|
|
<h3>Loaded HEASARC catalogs</h3>
|
|
|
|
<p>
|
|
<ul>
|
|
{% if xmmssc_count %}<li><em>XMMSSC</em> ({{ xmmssc_count }}) </li>{% endif %}
|
|
|
|
{% if xmmdr9_count %}<li><em>4XMM DR9</em> ({{ xmmdr9_count }}) <strong>slimline</strong> version, see <a href="http://xmmssc.irap.omp.eu/Catalogue/4XMM-DR9/4XMM_DR9.html">here <span class="glyphicon glyphicon-new-window"></span></a></li>{% endif %}
|
|
|
|
{% if csc_count %}<li><em>CSC</em> ({{ csc_count }}) <a href="https://vizier.u-strasbg.fr/viz-bin/VizieR?-source=IX/57">Vizier <span class="glyphicon glyphicon-new-window"></span></a> </li>{% endif %}
|
|
|
|
{% if twosxps_count %}<li><em>2SXPS</em> ({{ twosxps_count }})</li>{% endif %}
|
|
|
|
{% if rass2rxs_count %}<li><em>RASS2RXS</em> ({{ rass2rxs_count }})</li>{% endif %}
|
|
|
|
{% if allwiseagn_count %}<li><em>ALLWISEAGN</em> ({{ allwiseagn_count }})</li>{% endif %}
|
|
|
|
{% if chanmaster_count %}<li><em>CHANMASTER</em> ({{ chanmaster_count }})</li>{% endif %}
|
|
|
|
{% if xray_count %}<li><em>XrayMaster</em> ({{ xray_count }})</li>{% endif %}
|
|
|
|
</p>
|
|
|
|
{% if table %}
|
|
<h3><b>{{ table.name }}</b> <a href="{{ table.document_url }}">{{ table.description }} <span class="glyphicon glyphicon-new-window"></span></a></h3>
|
|
{% endif %}
|
|
|
|
{% if columns %}
|
|
<ul>
|
|
{% for col in columns %}
|
|
<li><b>{{ col.name }}</b>: {{ col.description }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endif %}
|
|
|
|
{% endblock %}
|