Source code for horizon.test.test_dashboards.dogs.dashboard

import horizon


class Dogs(horizon.Dashboard):
    name = _("Dogs")
[docs] slug = "dogs" panels = ('puppies',) default_panel = 'puppies' horizon.register(Dogs)