Q. Which of these is a valid template inheritance structure in Django?
β
Correct Answer: (C)
{% extends 'base.html' %}
Explanation: The correct syntax to extend a template is {% extends 'base.html' %}.