{% extends 'structures/base.html' %} {% load i18n %} {% load humanize %} {% load bootstrap %} {% load static %} {% block details %}

Structure List

{% if tags_exist %} {% if active_tags %} {% else %} {% endif %} {% else %} {% endif %}
Owner Location Type Name & Tags Services R-Hour Fuel Expires State

{% if active_tags %} Active Tags Filter:  {% for tag in active_tags %} {{ tag.html }} {% endfor %} {% endif %}

{% if perms.structures.add_structure_owner %} Add Structure Owner {% endif %}

All dates are EVE time • Offlined services are shown as name • Reinforced structures (except POCOs) are highlighted in red • Data can be outdated by up to 1 hour due to API caching.

{% 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(){ $('#tab_structures').DataTable({ ajax: { url: '{% url 'structures:structure_list_data' %}?tags={{ active_tags|join:"," }}', dataSrc: '', cache: false }, columns: [ { data: 'corporation_icon' }, { data: 'owner' }, { data: 'location' }, { data: 'type_icon' }, { data: 'type' }, { data: 'structure_name' }, { data: 'services' }, { data: 'reinforcement' }, { data: 'fuel_expires', render: { _: 'display', sort: 'timestamp' } }, { data: 'state_details' }, { data: 'alliance_name' }, { data: 'corporation_name' }, { data: 'region_name' }, { data: 'solar_system_name' }, { data: 'category_name' }, { data: 'group_name' }, { data: 'type_name' }, { data: 'is_reinforced_str' }, { data: 'state_str' }, { data: 'is_low_power_str' } ], lengthMenu: [[7, 15, 25, 50, -1], [7, 15, 25, 50, "All"]], columnDefs: [ { "sortable": false, "targets": [0, 3, 4, 6] }, { "visible": false, "targets": [10, 11, 12, 13, 14, 15, 16, 17, 18, 19] } ], order: [ [ 1, "asc" ], [ 5, "asc" ] ], filterDropDown: { columns: [ { idx: 10, title: 'Alliance' }, { idx: 11, title: 'Corporation' }, { idx: 12, title: 'Region' }, { idx: 13, title: 'Solar System' }, { idx: 14, title: 'Category' }, { idx: 15, title: 'Group' }, { idx: 16, title: 'Type' }, { idx: 17, title: 'Reinforced?' }, { idx: 18, title: 'State' }, { idx: 19, title: 'Low Power?' } ], bootstrap: true }, createdRow: function( row, data, dataIndex ) { if (data['is_reinforced']) { $(row).addClass('danger'); } } }); }); {% endblock %}