ジャンゴのバージョン: 1.2.3
テンプレートタグからこのタグの専用ビューにフォームオブジェクトを渡したいです。私のコードは以下の通りです:
from django import template
from django.core.urlresolvers import reverse
from django.utils.translation import ugettext, gettext_lazy as _
from django.conf import settings
from django.utils import simplejson
register = template.Library()
........
@register.inclusion_tag('template.html', takes_context=True)
def asset_diskencryption_settings(context, var1, form):
context["form"] = form
context["var1"] = var1
return '' // Probably I have to use some method which allows me to return some variables to the template
template.html では、 {{form.password}} のようなフォーム変数を使用したいと思います