14 lines
287 B
Python
14 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)
|