2022-01-01 23:05:55 +00:00
|
|
|
from django.shortcuts import render
|
2022-01-18 00:50:54 +00:00
|
|
|
from decouple import config
|
2022-02-17 19:50:10 +00:00
|
|
|
|
2022-01-01 23:05:55 +00:00
|
|
|
# Create your views here.
|
2022-01-01 23:58:44 +00:00
|
|
|
|
2022-02-17 19:50:10 +00:00
|
|
|
|
2022-10-20 18:06:16 +00:00
|
|
|
def basic(request, *args, **kwargs):
|
2022-02-17 19:50:10 +00:00
|
|
|
context = {"ONION_LOCATION": config("ONION_LOCATION")}
|
2022-10-20 18:06:16 +00:00
|
|
|
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)
|