
Creates a set of test dashboards for testing core components so that they're not affected by changes to the OpenStack dashboards which should be completely independent. Fixes bug 999357. Change-Id: I78e70eaf32a639db5c87a3c03377dc2a02d66ad9
14 lines
242 B
Python
14 lines
242 B
Python
from django.utils.translation import ugettext_lazy as _
|
|
|
|
import horizon
|
|
|
|
from horizon.tests.test_dashboards.dogs import dashboard
|
|
|
|
|
|
class Puppies(horizon.Panel):
|
|
name = _("Puppies")
|
|
slug = "puppies"
|
|
|
|
|
|
dashboard.Dogs.register(Puppies)
|