mirror of
https://github.com/OpenBankProject/API-Manager.git
synced 2026-02-06 13:46:45 +00:00
13 lines
350 B
Python
13 lines
350 B
Python
# -*- coding: utf-8 -*-
|
|
from django.conf import settings
|
|
from django.views.generic import TemplateView
|
|
|
|
|
|
class HomeView(TemplateView):
|
|
template_name = "home.html"
|
|
|
|
def get_context_data(self, **kwargs):
|
|
context = super(HomeView, self).get_context_data(**kwargs)
|
|
context['OAUTH_API'] = settings.OAUTH_API
|
|
return context
|