{% extends 'autosrp/base.html' %} {% load i18n humanize %} {% block content %}

{% trans "Penalty Schemes" %}

{% if perms.autosrp.manage %} {% trans "New Scheme" %} {% endif %}
{% for s in object_list %} {% empty %} {% endfor %}
{% trans "Name" %} {% trans "Missing (%)" %} {% trans "Wrong (%)" %} {% trans "Max (%)" %} {% trans "Count Rigs?" %} {% trans "Count Subs?" %} {% trans "Default" %}
{{ s.name }}
{{ s.per_missing_module_pct|floatformat:2 }} {{ s.per_extra_module_pct|floatformat:2 }} {{ s.max_total_deduction_pct|floatformat:2 }} {{ s.count_rigs }} {{ s.count_subsystems }} {{ s.is_default }} {% if perms.autosrp.manage %} {% trans "Edit" %}
{% csrf_token %}
{% endif %}
{% trans "No schemes yet." %}
{% endblock %}