robosats/frontend/views.py
2022-01-17 16:50:54 -08:00

7 lines
251 B
Python

from django.shortcuts import render
from decouple import config
# Create your views here.
def index(request, *args, **kwargs):
context={'ONION_LOCATION': config('ONION_LOCATION')}
return render(request, 'frontend/index.html', context=context)