~ubuntu-branches/ubuntu/saucy/horizon/saucy-updates

« back to all changes in this revision

Viewing changes to openstack_dashboard/dashboards/project/access_and_security/security_groups/tables.py

  • Committer: Package Import Robot
  • Author(s): James Page, James Page, Chuck Short
  • Date: 2013-10-03 13:48:12 UTC
  • mfrom: (1.1.31)
  • Revision ID: package-import@ubuntu.com-20131003134812-2vkwosem4flwuk5y
Tags: 1:2013.2~rc1-0ubuntu1
[ James Page ]
* New upstream release candidate:
  - d/static: Refreshed static assets for 2013.2~rc1.
  - d/patches: Refreshed patches.

[ Chuck Short ]
* debian/control: Add python-lesscpy as a suggests to optionally
  support online compression of static assets (LP: #1226674).

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
#    License for the specific language governing permissions and limitations
15
15
#    under the License.
16
16
 
17
 
import logging
18
 
 
19
17
from django.conf import settings  # noqa
20
18
from django.core.urlresolvers import reverse  # noqa
21
19
from django.utils.translation import ugettext_lazy as _  # noqa
26
24
from openstack_dashboard.utils import filters
27
25
 
28
26
 
29
 
LOG = logging.getLogger(__name__)
30
 
 
31
 
 
32
27
class DeleteGroup(tables.DeleteAction):
33
28
    data_type_singular = _("Security Group")
34
29
    data_type_plural = _("Security Groups")