Merge "Using horizon's templateview instead of generic one from django"

This commit is contained in:
Jenkins 2016-11-30 19:40:45 +00:00 committed by Gerrit Code Review
commit a62cc4c3fe
1 changed files with 3 additions and 2 deletions

View File

@ -12,8 +12,9 @@
# License for the specific language governing permissions and limitations
# under the License.
from django.views import generic
from horizon.views import HorizonTemplateView
class IndexView(generic.TemplateView):
class IndexView(HorizonTemplateView):
template_name = 'project/ngloadbalancersv2/index.html'
page_title = 'Load Balancers'