Major rename of package from lib to ansibleworks.

This commit is contained in:
Chris Church
2013-05-21 18:20:26 -04:00
parent 5133b9a30e
commit aeac739735
264 changed files with 230 additions and 316 deletions

15
ansibleworks/ui/views.py Normal file
View File

@@ -0,0 +1,15 @@
# 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()