5 lines
No EOL
136 B
Python
5 lines
No EOL
136 B
Python
from django.shortcuts import render
|
|
|
|
def index(request):
|
|
context = {'title': 'OpenREKO'}
|
|
return render(request, 'index.html', context) |