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

10 lines
237 B
Python

"""SatNOGS Network Auth0 login module views"""
from __future__ import absolute_import, unicode_literals
from django.shortcuts import render
def index(request):
"""Returns the index view"""
return render(request, 'index.html')