robosats/frontend/views.py
2022-02-17 11:50:10 -08:00

10 lines
256 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)