vcp-elearning/VCPBayern_eLearning/eLearning/views.py
2016-01-20 23:55:56 +01:00

13 lines
287 B
Python

from django.shortcuts import render_to_response
# Create your views here.
def home(request):
content = {
'questionId': 1,
'questionTitle': 'titleOne',
'questionText': 'Lorem ipsum dolor sit amet'
}
return render_to_response('index.html', content)