This repository has been archived on 2021-01-07. You can view files and clone it, but cannot push or open issues/pull-requests.
nasa-hackathon/viz/views.py

7 lines
125 B
Python

from django.shortcuts import render
def index(request):
context = {}
return render(request, 'index.html', context)