{% extends "rattingtax/base.html" %} {% load i18n humanize %} {% block details %}
{% trans "Tax Management" %}
{% trans "Manage global defaults and per-corporation tax overrides." %}
{% csrf_token %}
{% trans "Used when a corporation does not have its own override." %}
{% trans "Subtracted from the calculated tax for every corporation." %}
{% for r in rows %} {% empty %} {% endfor %}
{% trans "Corporation" %} {% trans "Override rate (%)" %} {% trans "Effective rate (%)" %} {% trans "In-game corp tax (%)" %} {% trans "Mode" %}
{% if r.corp.logo_url %} {% endif %} {{ r.corp.name }}{% if r.corp.ticker %} [{{ r.corp.ticker }}]{% endif %} {{ r.effective_rate }}% {% if r.ingame_tax_rate %} {{ r.ingame_tax_rate }}% {% else %} {% endif %} {% if r.uses_override %} {% trans "Per-corp override" %} {% else %} {% trans "Global default" %} {% endif %}
{% trans "No corporations found." %}
{% trans "Leave an override field empty to use the global default tax rate for that corporation." %}
{% endblock %}