~ubuntu-branches/ubuntu/utopic/horizon/utopic

« back to all changes in this revision

Viewing changes to openstack_dashboard/dashboards/project/data_processing/cluster_templates/panel.py

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2014-07-25 11:39:09 UTC
  • mfrom: (1.1.42)
  • Revision ID: package-import@ubuntu.com-20140725113909-b8920pdy87itn1ro
Tags: 1:2014.2~b2-0ubuntu1
* New upstream release.
* debian/patches/ubuntu_settings.patch: Refresed
* debian/patches/fix-dashboard-manage.patch: Refreshed
* debian/patches/fix-dashboard-django-wsgi.patch: Refreshed

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Licensed under the Apache License, Version 2.0 (the "License");
 
2
# you may not use this file except in compliance with the License.
 
3
# You may obtain a copy of the License at
 
4
#
 
5
#    http://www.apache.org/licenses/LICENSE-2.0
 
6
#
 
7
# Unless required by applicable law or agreed to in writing, software
 
8
# distributed under the License is distributed on an "AS IS" BASIS,
 
9
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
 
10
# implied.
 
11
# See the License for the specific language governing permissions and
 
12
# limitations under the License.
 
13
 
 
14
from django.utils.translation import ugettext_lazy as _
 
15
 
 
16
import horizon
 
17
 
 
18
from openstack_dashboard.dashboards.project import dashboard
 
19
 
 
20
 
 
21
class ClusterTemplatesPanel(horizon.Panel):
 
22
    name = _("Cluster Templates")
 
23
    slug = 'data_processing.cluster_templates'
 
24
    permissions = ('openstack.services.data_processing',)
 
25
 
 
26
 
 
27
dashboard.Project.register(ClusterTemplatesPanel)