mirror of
https://github.com/RoboSats/robosats.git
synced 2025-02-07 13:59:06 +00:00
13 lines
390 B
Python
13 lines
390 B
Python
from decouple import config
|
|
from django.shortcuts import render
|
|
|
|
|
|
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)
|