{% extends 'moons/base.html' %} {% load i18n %} {% load static %} {% load humanize %} {% load moon_tags %} {% block at_block %}

Moon Extractions

Key:

Exceptional Rare Uncommon Common Ubiquitous Ore

Active Moons

{% for event in current_fracks %} {% empty %} {% endfor %}
Arival Structure Moon System Constellation Corporation Ores
{{ event.arrival_time|date:"Y-m-d H:i"}} {{ event.structure.location_name }} {{ event.moon_name.name }} {{ event.structure.system.name }} {{ event.structure.system.constellation.name }} {{ event.corporation.corporation.corporation_name }} {% for ores in event.frack.all %} {{ ores.ore.name }} ( {{ores.total_m3|intword}} m3)
{% endfor %}

Upcoming Moons

{% for event in events %} {% empty %} {% endfor %}
Arival Structure Moon System Constellation Corporation Ores
{{ event.arrival_time|date:"Y-m-d H:i"}} {{ event.structure.location_name }} {{ event.moon_name.name }} {{ event.structure.system.name }} {{ event.structure.system.constellation.name }} {{ event.corporation.corporation.corporation_name }} {% for ores in event.frack.all %} {{ ores.ore.name }} ({{ores.total_m3|intword}} m3)
{% endfor %}
{% endblock %} {% block extra_javascript %} {% include 'bundles/datatables-js.html' %} {% endblock %} {% block extra_script %} $(".viewcontent").on("click", function() { $("#ping-modal").modal(); }); $(document).ready(function() { $('#tableactive').DataTable({ "filterDropDown": { columns: [{ idx: 3 },{ idx: 4 },{ idx: 5 }, ], bootstrap: true }, "columnDefs": [ { "searchable": false, "targets": [0] }, { "sortable": false, "targets": [6] }, { "visible": false, "targets": [3,4,5] } ], "order": [ [0, "asc"], ], "pageLength": 25 }); $('#tablestructs').DataTable({ "filterDropDown": { columns: [{ idx: 3 },{ idx: 4 },{ idx: 5 }, ], bootstrap: true }, "columnDefs": [ { "searchable": false, "targets": [0] }, { "sortable": false, "targets": [6] }, { "visible": false, "targets": [3,4,5] } ], "order": [ [0, "asc"], ], "pageLength": 25 }); }); {% endblock %}