
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
15 lines
273 B
Python
15 lines
273 B
Python
from django.utils.translation import ugettext_lazy as _
|
|
|
|
import horizon
|
|
|
|
from horizon.test.test_dashboards.cats import dashboard
|
|
|
|
|
|
class Tigers(horizon.Panel):
|
|
name = _("Tigers")
|
|
slug = "tigers"
|
|
permissions = ("horizon.test",)
|
|
|
|
|
|
dashboard.Cats.register(Tigers)
|