horizon/django-openstack/django_openstack/templates/django_openstack/dash/images/index.html

21 lines
601 B
HTML

{% extends 'django_openstack/dash/base.html' %}
{% block sidebar %}
{% with current_sidebar="images" %}
{{block.super}}
{% endwith %}
{% endblock %}
{% block page_header %}
{% url dash_images request.user.tenant as refresh_link %}
{# to make searchable false, just remove it from the include statement #}
{% include "django_openstack/common/_page_header.html" with title="Images" refresh_link=refresh_link searchable="true" %}
{% endblock page_header %}
{% block dash_main %}
{% if images %}
{% include 'django_openstack/dash/images/_list.html' %}
{% endif %}
{% endblock %}