{% 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 %}
Can create instances from this template but cannot manage access or edit the attributes.
{% endblocktrans %}
{% trans "Operator" %}
{% blocktrans %}
Same as user, however operators can grant user level access to this template
for groups or users and they can revoke user level accesses.
{% endblocktrans %}
{% trans "Owner" %}
{% blocktrans %}
Owners can edit the template's attributes, delete it,
transfer the ownership and also grant user,
operator and owner level access to the template.
{% endblocktrans %}
{% trans "Disk list" %}
{% if not disks %}
{% trans "No disks are added!" %}
{% endif %}
{% for d in disks %}