Skip to content

Commit

Permalink
added a 'shared' column in FW policy table
Browse files Browse the repository at this point in the history
In firewall policy table, shared column is missing.

This adding the missing column in the policy table.

Change-Id: I1e7d53f1088f5e1d1e9f4352349a3c18cc024f74
Closes-Bug: #1463753
  • Loading branch information
Masco Kaliyamoorthy committed Jun 10, 2015
1 parent bd80fb9 commit 00ec2e4
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions openstack_dashboard/dashboards/project/firewalls/tables.py
Expand Up @@ -309,6 +309,9 @@ class PoliciesTable(tables.DataTable):
audited = tables.Column("audited",
verbose_name=_("Audited"),
filters=(filters.yesno, filters.capfirst))
shared = tables.Column("shared",
verbose_name=_("Shared"),
filters=(filters.yesno, filters.capfirst))

class Meta(object):
name = "policiestable"
Expand Down

0 comments on commit 00ec2e4

Please sign in to comment.