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

« back to all changes in this revision

Viewing changes to horizon/dashboards/syspanel/images/tables.py

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2012-06-01 10:57:56 UTC
  • mfrom: (1.1.15)
  • Revision ID: package-import@ubuntu.com-20120601105756-dif0km7n98vhdi2x
Tags: 2012.2~f2~20120530.1777-0ubuntu1
* New upstream release. 
* debian/patches/add_juju_settings_panel.patch: Refreshed
* debian/patches/turn-off-debug.patch: Refreshed

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 
17
17
from django.utils.translation import ugettext_lazy as _
18
18
 
 
19
from horizon import tables
19
20
from horizon.dashboards.nova.images_and_snapshots.images.tables import (
20
21
        ImagesTable, EditImage, DeleteImage)
21
22
 
33
34
 
34
35
 
35
36
class AdminImagesTable(ImagesTable):
 
37
    name = tables.Column("name",
 
38
                         link="horizon:syspanel:images:detail",
 
39
                         verbose_name=_("Image Name"))
 
40
 
36
41
    class Meta:
37
42
        name = "images"
38
43
        verbose_name = _("Images")