awx/awx/ui/views.py
2014-01-02 11:51:43 -05:00

16 lines
395 B
Python

# Copyright (c) 2014 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()