mirror of
https://github.com/RoboSats/robosats.git
synced 2024-12-13 19:06:26 +00:00
10 lines
256 B
Python
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)
|