mirror of
https://github.com/tanrax/simple-HTML-over-the-Wire-social-network.git
synced 2026-08-14 17:53:15 +02:00
6 lines
103 B
Python
6 lines
103 B
Python
from django.shortcuts import render
|
|
|
|
|
|
def index(request):
|
|
return render(request, "index.html", {})
|