From 455a162057ef944704606602ec769f2de4a5a4eb Mon Sep 17 00:00:00 2001 From: Benjamin Dauvergne Date: Tue, 1 Jul 2014 16:49:39 +0200 Subject: [PATCH] README: add documentation about the template tag --- README | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/README b/README index d833f63..4807b7c 100644 --- a/README +++ b/README @@ -270,3 +270,16 @@ Template:: {% endfor %} + +Template tag +============ + +You can render a block in any template using the template tag ``render_blurp``: + + {% load blurp_tags %} + + {% render_blurp "student_table" %} + +Beware that it will not work with renderes doing any access to the +``placeholder`` or ``instance`` parameter of their render method as those +object are not available in a random template.