app-catalog-ui/app_catalog/views.py

11 lines
270 B
Python

from horizon import views
class IndexView(views.APIView):
# A very simple class-based view...
template_name = 'app_catalog/index.html'
def get_data(self, request, context, *args, **kwargs):
# Add data to the context here...
return context