Templates added

This commit is contained in:
2024-06-05 11:33:02 +03:00
parent 69a2160eb7
commit 50c53060bf
117 changed files with 16737 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
{% extends "base.html" %}
{% block header %}
<h3>Loaded <a href="https://heasarc.gsfc.nasa.gov/W3Browse/catalog/class.html">HEASARC Object Classification <span class="glyphicon glyphicon-new-window"></span></a></h3>
<ul>
{% for class in classes %}
{% if class.class_name != 'UNCLASSIFIED' %}<li>{{ class.class_id }}, <b>{{ class.class_name }}</b></li>{% endif %}
{% endfor %}
</ul>
{% endblock %}
{% block content %}
{% endblock %}