1
0
Fork 0
satnogs-db/auth0login/views.py

10 lines
215 B
Python
Raw Permalink Normal View History

"""SatNOGS DB Auth0 login module views"""
2018-11-17 13:11:35 -07:00
from __future__ import unicode_literals
from django.shortcuts import render
def index(request):
"""Returns the index view"""
2018-11-17 13:11:35 -07:00
return render(request, 'index.html')