包含带有递增上下文变量的django模板

时间:2014-07-21 18:01:26

标签: django django-templates

我有一个简单的模板destination.html

   <span>Name: <input type="text" name="destination_name_{{ counter }}"></span>
   <span>Rating: <input type="number" name="rating_{{ counter }}"></span>
   <span>Description: <textarea name="destination_description_{{ counter }}"></textarea></span>

每当用户点击counter按钮时,我想将此模板包含在具有Add上下文的其他模板中。当然,我希望传递的计数器将是一个递增值,具体取决于用户单击Add按钮的次数。

我尝试了{% include "destination.html" with counter = 0 %},这包括destination.html的一个实例,但我不知道如何根据点击按钮的次数增加计数器。

0 个答案:

没有答案