{% load i18n %}

{% trans "Owner" %}

{% if user == instance.owner %} {% blocktrans %}You are the current owner of this instance.{% endblocktrans %} {% else %} {% blocktrans with owner=instance.owner %} The current owner of this instance is {{owner}}. {% endblocktrans %} {% endif %} {% if user == instance.owner or user.is_superuser %} {% trans "Transfer ownership..." %} {% endif %}

{% trans "Permissions"|capfirst %}

{% csrf_token %} {% for i in acl.users %} {% endfor %} {% for i in acl.groups %} {% endfor %}
{% trans "Who" %}{% trans "What" %}
{{i.user}} {% trans "remove" %}
{{i.group}} {% trans "remove" %}