1
0
mirror of https://github.com/ansible/awx.git synced 2024-11-02 01:21:21 +03:00
awx/lib/ui/views.py
2013-05-08 11:41:00 -04:00

13 lines
331 B
Python

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()