﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
33519	Recursive {% include %} crashes silently.	Brambor	nobody	"index.html
{{{
{% load static %}

{% include ""index.html"" %}
}}}

view:
{{{
def index(request, **kwargs):
	template = loader.get_template('index.html')

	return HttpResponse(template.render({}, request))
}}}

`url(r'^index$', index)` is in urlpatterns in urls.py

When running the server with
`python manage.py runserver`
and accessing `http://localhost:8000/index`
The server just stops, not printing anything

cmd line looks like this:
{{{
>>>python manage.py runserver
Watching for file changes with StatReloader
Performing system checks...

System check identified no issues (0 silenced).
February 17, 2022 - 11:33:10
Django version 3.2.12, using settings 'settings'
Starting development server at http://127.0.0.1:8000/
Quit the server with CTRL-BREAK.

>>>
}}}

I also tried `python manage.py runserver -v 3`, which too didn't print anything.

If I have seen a simple ""Ran out of memory"" Exception or something, it would occur to me that I did include X in X. Without that error message, I wondered, whether the issue is that something is called `index` and that word is reserved somewhere."	Bug	closed	Template system	3.2	Normal	wontfix	template include crash		Unreviewed	0	0	0	0	0	0
