﻿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
21881	Clarify that `{% ssi ... parsed %}` has the same limitations as `{% include %}`	Viktor	mamun	"Please, see https://github.com/pulilab/django-ssi-tag-block for a simple test app that demonstrates this bug.

What would you expect to be rendered when the `page.html` file gets rendered with the following templates?


== page.html ==


{{{
{% extends ""base.html"" %}

{% block content %}
    Everything fine. The content block was overwritten!
{% endblock %}
}}}


== base.html ==


{{{
{# included_template == ssi.html #}
{% ssi included_template parsed %}
}}}


== ssi.html ==

{{{
<!DOCTYPE html>
<html>
<head>
    <title></title>
</head>
<body>
{% block content %}
This is the original content block. You should never see me.
{% endblock %}
</body>
</html>
}}}

My expectation would be to see the text ""Everything fine. The content block was overwritten!"". But this did not happen.
"	Bug	closed	Documentation	1.5	Normal	fixed	ssi block		Accepted	1	0	0	0	1	0
