manila-ui/manila_ui/dashboards/project/shares/panel.py
Tatiana Ovchinnikova e3fec776b8 Remove vim headers
We don't need vim settings in each source file:

comment - # vim: tabstop=4 shiftwidth=4 softtabstop=4

It can be set in user's vimrc.

Change-Id: I205123ae076cf5801f24992cb4897ba2a37bd4b5
Partial-Bug: #1229324
2016-07-12 12:33:36 +03:00

29 lines
899 B
Python

# Copyright 2012 Nebula, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
from django.utils.translation import ugettext_lazy as _
import horizon
from openstack_dashboard.dashboards.project import dashboard
class Shares(horizon.Panel):
name = _("Shares")
slug = 'shares'
permissions = ('openstack.services.share', )
dashboard.Project.register(Shares)