from django.shortcuts import render def index(request): context = {'title': 'OpenREKO'} return render(request, 'index.html', context)