{% extends 'allianceauth/base.html' %} {% load i18n %} {% load humanize %} {% load static %} {% block page_title %}{% translate "Market Browser" %}{% endblock %} {% block content %}

{% translate "Market Watches" %}

{% for watchconfig in watchconfigs %} {% endfor %}
{% translate "EVE Type" %} {% translate "Missing Quantity" %}
{{ watchconfig.eve_type.name }} {{ watchconfig.missing_volume }}
{% endblock %} {% block extra_javascript %} {% include 'bundles/datatables-js.html' %} {% include 'bundles/jquery-ui-js.html' %} {% include 'bundles/moment-js.html' %} {% include "bundles/jquery-ui-css.html" %} {% endblock %} {% block extra_css %} {% include 'bundles/datatables-css.html' %} {% include 'bundles/jquery-ui-css.html' %} {% endblock %} {% block extra_script %} $(document).ready( function () { $('#table-market-watches').DataTable({ lengthMenu: [ [10, 25, 50, 100, -1], [10, 25, 50, 100, 'All'], ], "stateSave": true, "stateDuration": 0 }); } ); {% endblock %}