OpenREKO/front/views.py

5 lines
136 B
Python
Raw Permalink Normal View History

2025-09-20 15:54:50 +02:00
from django.shortcuts import render
def index(request):
context = {'title': 'OpenREKO'}
2025-09-20 15:54:50 +02:00
return render(request, 'index.html', context)