django テンプレートを解析して、特定のタグのみをレンダリングすることは可能ですか? このスニペットは探しているものに近いですが、テンプレート全体が返されません。基本的に、このテンプレートを入力として持っている場合
<html>
<title>{% block title%}{% endblock %}</title>
<body>
{% block content %}
{% mycustomtag "args" %}
{% endblock content %}
</body>
</html>
そして私はこれだけをレンダリングしたいのですmycustomtag
が、これは私が探している出力です
<html>
<title>{% block title%}{% endblock %}</title>
<body>
{% block content %}
<p>Result from mycustomtag</p>
{% endblock content %}
</body>
</html>
ありがとう。