{% load i18n %} {% load parse_date %}
{% trans "ID" %} | {% trans "Name" %} | {% trans "Status" %} | {% trans "Size" %} | {% trans "Created" %} | {% trans "Attached To" %} | {% trans "Actions" %} |
---|---|---|---|---|---|---|
{{ volume.id }} | {{ volume.displayName }} | {{ volume.status|capfirst }} | {{ volume.size }} {% trans "GB" %} | {{ volume.createdAt|parse_date }} | {% for attachment in volume.attachments %} {% if attachment %} Instance {{ attachment.serverId }} ({{ attachment.device }}) {% else %} {% trans "Not Attached" %} {% endif %} {% endfor %} |
|