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