mirror of
https://github.com/RoboSats/robosats.git
synced 2024-12-13 19:06:26 +00:00
6 lines
150 B
Python
6 lines
150 B
Python
from django.shortcuts import render
|
|
|
|
# Create your views here.
|
|
|
|
def index(request, *args, **kwargs):
|
|
return render(request, 'frontend/index.html') |