qobjects = [
{
question: "True or False. All models are by default visible in the admin interface",
options: [
"True",
"False"
],
correct: 1
},
{
question: "What is a correct syntax for making the Member model visible in the admin interface?",
options: [
"admin.site.visible(Member)",
"admin.site.include(Member)",
"admin.site.register(Member)",
],
correct: 2
},
{
question: "In which file can you specify which models should be visible in the admin interface?",
options: [
"views.py",
"admin.py",
"manage.py"
],
correct: 1
}
]