Попробуйте использовать get_context_data в вашем представлении:
def get_context_data(self, **kwargs):
context = super(ViewName, self).get_context_data(**kwargs)
context['chapters'] = Chapter.objects.filter(chapter_number=1).order_by('date_created')
# order_by orders the queryset based on the field you specify. You could also use ('-date_created) to reverse the order.
return context
, а затем в вашем шаблоне:
{% for chapter in chapters %}
<p>{{ chapter.name }}</p>
{% endfor %}
Трудно сказать, так как я не знаю имени вашегоDateTimeField или другие атрибуты, которые вы указали для главы.