~ubuntu-branches/ubuntu/raring/horizon/raring

« back to all changes in this revision

Viewing changes to horizon/tests/test_dashboards/dogs/dashboard.py

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2012-05-24 14:33:20 UTC
  • mfrom: (1.1.14)
  • Revision ID: package-import@ubuntu.com-20120524143320-i7eswfq6ecxlvh5a
Tags: 2012.2~f1-0ubuntu1
* New usptream release. 
* Prepare for quantal:
  - debian/patches/fix-coverage-binary-name.patch: Refreshed.
* Temporarily pass the testsuite.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
from django.utils.translation import ugettext_lazy as _
 
2
 
 
3
import horizon
 
4
 
 
5
 
 
6
class Dogs(horizon.Dashboard):
 
7
    name = _("Dogs")
 
8
    slug = "dogs"
 
9
    panels = ('puppies',)
 
10
    default_panel = 'puppies'
 
11
 
 
12
 
 
13
horizon.register(Dogs)