{% 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 "Disk list" %}
{% if not disks %}
{% trans "No disks are added!" %}
{% endif %}
{% for d in disks %}