{% extends "rattingtax/base.html" %} {% load i18n humanize %} {% block details %}
{% trans "Ratting Tax Summary" %}
{% trans "Default tax rate" %}: {{ default_tax_rate }}%  |  {% trans "Flat tax reduction" %}: {{ flat_tax_reduction }} ISK  |  {% if show_all %} {% trans "Viewing: all corporations" %} {% else %} {% trans "Viewing: my corporations" %} {% endif %}
{% if can_view_all and show_all %} {% endif %}
{% if can_view_all %} {% if show_all %} {% trans "Show my corporations" %} {% else %} {% trans "Show all corporations" %} {% endif %} {% endif %}
{% if rows %}
{% for r in rows %} {% endfor %}
{% trans "Corporation" %} {% trans "Month total" %} {% trans "Configured tax rate" %} {% trans "Tax reduction" %} {% trans "Final tax due" %}
{% if r.corp.logo_url %} {% endif %} {{ r.corp.name }}{% if r.corp.ticker %} [{{ r.corp.ticker }}]{% endif %} {% if r.uses_override %} override {% endif %} {% if not r.has_stat %} no data {% endif %} {{ r.month_total }} ISK {{ r.effective_rate }}% {{ r.flat_tax_reduction }} ISK {{ r.final_tax }} ISK
{% else %}

{% trans "No data available." %}

{% endif %}
{% endblock %}