My Views.py files looks like below
def homepage(request):
template = \'homepage.html\'
list_display_template = \'list.html\'
list = model.obj
If there is any issue/ error with the include template, django by default won't show the error. You can enable it using the setting variable TEMPLATE_DEBUG = True
Then you will able to view the error in the template when you try to load that page.
In the above case there may be some load tag is missing {% load xxx %}
in the included template.