﻿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
17524	self referential blocks	pasquinelli@…	nobody	"say i have a '''{% block content %}''' in '''base.html''' and i'd like to refine it in another template '''refined.html''', while still exposing the block to other templates that extend from '''refined.html''' like so:


{{{
{% block content %}
   <div class=""someclass"">
      {% block content %}{% endblock content %}
   </div>
{% endblock content %}
}}}


currently this is impossible because there can be only one occurrence of a block in a template, which means i have to repeat myself. i think you should be able to override a block and still expose it for further extension. "	New feature	closed	Template system	1.3	Normal	wontfix	recursive blocks		Unreviewed	0	0	0	0	0	0
