{% extends 'allianceauth/base.html' %} {% load i18n %} {% block page_title %}{% trans 'Moon List' %}{% endblock %} {% block content %}

{% include 'moonstuff/moonmenu.html' %}

{% trans "Moons" %}

Only moons that have had extractions or have been scanned will be listed.

{% for moon in moons %} {% endfor %}
Moon Rarity Utilities Ores
{{ moon.name }} R{{ moon.resources_set|moon_rarity }} {% for res in moon.resources_set %}{{ res.ore }} {% endfor %}
{% endblock %} {% block extra_javascript %} {% include 'bundles/datatables-js.html' %} {% endblock %} {% block extra_css %} {% include 'bundles/datatables-css.html' %} {% endblock %} {% block extra_script %} $(document).ready(function(){ $('#moon-list').DataTable({ "columnDefs": [ { "targets": [ 3 ], "visible": false } ] }); }); {% endblock %}