{% if user == object.owner %}
{% blocktrans %}You are the current owner of this template.{% endblocktrans %}
{% else %}
{% url "dashboard.views.profile" username=object.owner.username as url %}
{% blocktrans with owner=object.owner name=object.owner.get_full_name%}
The current owner of this template is {{name}} ({{owner}}).
{% endblocktrans %}
{% endif %}
{% if user == object.owner or user.is_superuser %}
{% trans "Transfer ownership..." %}
{% endif %}
{% trans "Manage access" %}
{% include "dashboard/_manage_access.html" with table_id="template-access-table" %}
{% trans "Access level rights" %}
{% trans "User" %}
{% blocktrans %}
User can deploy instances from this template.
{% endblocktrans %}
{% trans "Operator" %}
{% blocktrans %}
Operators are able to deploy and grant/revoke User level access to this template.
{% endblocktrans %}
{% trans "Owner" %}
{% blocktrans %}
Owners can edit attributes or delete the template.
Owners are able to grant/revoke User, Operator and Owner level access to the template.
The accountable owner (the one who created the template) can not be demoted.
The accountable ownership can be transferred to other User via the "Transfer onwership" button.
{% endblocktrans %}
{% trans "Disk list" %}
{% if not disks %}
{% trans "No disks are added!" %}
{% endif %}
{% for d in disks %}