~ubuntu-branches/ubuntu/precise/horizon/precise-updates

« back to all changes in this revision

Viewing changes to horizon/horizon/dashboards/nova/dashboard.py

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2011-12-16 16:34:56 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20111216163456-ts9ldy8skhsg0scb
Tags: 2012.1~e2-0ubuntu1
* New upstream release (LP: #904039)
* debian/control: Update build-depends.
* debian/watch: Fix to fetch from Launchpad ad well.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
class Nova(horizon.Dashboard):
23
23
    name = "Dashboard"
24
24
    slug = "nova"
25
 
    panels = {_("Manage Compute"): ('overview', 'instances', 'images',
26
 
                                    'snapshots', 'keypairs', 'volumes',
27
 
                                    'floating_ips', 'security_groups',),
 
25
    panels = {_("Manage Compute"): ('overview',
 
26
                                    'instances_and_volumes',
 
27
                                    'access_and_security',
 
28
                                    'images_and_snapshots'),
28
29
              _("Network"): ('networks',),
29
30
              _("Object Store"): ('containers',)}
30
31
    default_panel = 'overview'