I am trying to build a detail view in django, but nothing is displayed in the template.
views.py
class MyDetailView(DetailView):
model = Article
template_name = 'detail.html'
detail.html
{% extends 'base.html' %}
{% load i18n %}
{% endblock %}
{% block content %}
{% for item in itemlist %}
{{item.pk}}
{{item.title}}
{% empty %}
There are no items in this list
{% endfor %}
{% endblock %}
Why is nothing displayed in the template here?