mirror of
https://github.com/RoboSats/robosats.git
synced 2024-12-13 02:46:28 +00:00
c426d11473
* Add pre-commit-config * Fix pre commit config to run on frontend files
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)
|