robosats/frontend/views.py
2022-10-22 07:23:22 -07:00

15 lines
417 B
Python

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