qobjects = [
{
question: "What is a correct syntax for creating a variable in a template?",
options: [
"{% with firstname='Tobias' %}",
"{% let firstname='Tobias' %}",
"{% include firstname='Tobias' %}"
],
correct: 0
},
{
fillintheblanks: "exercise_template_variables1.htm"
},
{
question: "What is a correct syntax for creating a variable in a View?",
options: [
"context = 'firstname = Linus'",
"context = ['firstname']",
"
values = ['Linus']context = {",
],
correct: 2
}
]
'firstname': 'Linus',
}