horizon/openstack_dashboard/dashboards/admin/services/templates/services/index.html
Gabriel Hurley cb8e7c1f8f Splits OpenStack Dashboard bits from framework app code.
Moves everything OpenStack-specific (dashboards, apis, etc.)
into the openstack_dashboard project, achieving a much
cleaner separation between the project-specific code and
the generic Horizon framework code.

Change-Id: I7235b41d449b26c980668fc3eb4360b24508717b
2012-10-11 11:47:50 -07:00

15 lines
442 B
HTML

{% extends 'base.html' %}
{% load i18n %}
{% block title %}Services{% endblock %}
{% block page_header %}
{% url horizon:admin:services:index as refresh_link %}
{# to make searchable false, just remove it from the include statement #}
{% include "horizon/common/_page_header.html" with title=_("Services") refresh_link=refresh_link searchable="true" %}
{% endblock page_header %}
{% block main %}
{{ table.render }}
{% endblock %}