awx/ansibleworks/ui/views.py
2013-05-21 18:20:26 -04:00

16 lines
395 B
Python

# Copyright (c) 2013 AnsibleWorks, Inc.
# All Rights Reserved.
from django.views.generic.base import TemplateView
class IndexView(TemplateView):
template_name = 'ui/index.html'
def get_context_data(self, **kwargs):
context = super(IndexView, self).get_context_data(**kwargs)
# Add any additional context info here.
return context
index = IndexView.as_view()