magnum-ui/magnum_ui/templates/bays/index.html
shu-mutou 7e5e888481 Use Horizon's plugin registration system
Magnum UI and their panels are currently registered via their `dashboard.py`
and `panel.py` files, but should use the enabled files.
This is standard in Horizon.

This patch changes registration method to enabled files.

For moving our dashboard to under the "project" dashbaord,
we need to change URLs. So, many files will be changed.

Since "/project/containers" is already used by Swift Container panel,
this patch uses "bays", "baymodels" and "bays/containers" for URLs.

Change-Id: Icedb984331bd46540f2e7d12bbefcc308aff214f
Closes-Bug: #1507679
2015-12-24 17:29:52 +09:00

19 lines
337 B
HTML

{% extends 'base.html' %}
{% load i18n %}
{% block title %}
{% trans "Bays" %}
{% endblock %}
{% block page_header %}
<hz-page-header header="{$ 'Bays' | translate $}"/>
{% endblock page_header %}
{% block ng_route_base %}
<base href="{{ WEBROOT }}"></base>
{% endblock %}
{% block main %}
<div ng-view></div>
{% endblock %}