{% extends "conjunto/app_base.html" %} {% load i18n shortcuts %} {% block page_title %}{% translate "Keyboard shortcuts" %}{% endblock %} {% block page_pretitle %}{% if audience == "vendor" %}{% translate "Vendor administration" %}{% else %}{% translate "Tenant administration" %}{% endif %}{% endblock %} {% block content %}
{% csrf_token %}
{% translate "Effective shortcuts at this scope" %}
{% regroup rows by category as grouped %} {% for group in grouped %}
{{ group.grouper }}
{% if audience != "user" %} {% endif %} {% for row in group.list %} {% if audience != "user" %} {% endif %} {% endfor %}
{% translate "Action" %} {% translate "Default / Effective" %} {% translate "Override at this scope" %}{% translate "Lock" %}{% translate "Status" %}
{% if row.icon %}{% endif %}
{{ row.title }}
{{ row.id }} {{ row.scope_kind }}{% if row.scope_match %}: {{ row.scope_match }}{% endif %}
{% translate "Default" %}: {% if row.default_key %}{{ row.default_key }}{% else %}—{% endif %}
{% translate "Effective" %}: {% if row.effective_key %}{{ row.effective_key }}{% else %}{% translate "(unbound)" %}{% endif %}
{% if row.vendor_locked %} {% translate "Vendor lock" %} {% elif not row.writable %} {% translate "(read-only at this scope)" %} {% else %} {% if errors and row.id in errors %}
{{ errors|dictlookup:row.id }}
{% endif %}
{% endif %}
{% if row.lockable and not row.vendor_locked %} {% endif %} {% if row.own_value and not row.vendor_locked %} {% translate "Overridden" %} {% endif %}
{% empty %}

{% translate "No shortcut actions registered" %}

{% translate "Install at least one plugin that provides IShortcutAction implementations." %}

{% endfor %}
{% endblock %}