horizon/django-openstack/django_openstack/templates/django_openstack/dash/objects/_list.html

19 lines
633 B
HTML

<table id="objects" class="wide">
<tr>
<th>Name</th>
<th style="width: 100px;">Actions</th>
</tr>
{% for object in objects %}
<tr class="{% cycle 'odd' 'even' %}">
<td>{{ object.name }}</td>
<td id="actions">
<ul>
<li><a href="{% url dash_object_copy request.user.tenant container_name object.name %}">Copy</a></li>
<li class="form">{% include "django_openstack/dash/objects/_delete.html" with form=delete_form %}</li>
<li><a href="{% url dash_objects_download request.user.tenant container_name object.name %}">Download</a>
</ul>
</td>
</tr>
{% endfor %}
</table>