我想知道以下是否可能并需要一个例子。
我想创建一个呈现登录表单的模板标签。能不能做到,请指教。
这背后的原因是我有一个登录表单,需要在我网站的每个页面上。我已经决定这会更好作为我可以包含的标签。我想使用 forms.py 中的表单,而不是对其进行硬编码。
IE
from django import template
from accounts.forms import AuthenticationForm
register = template.Library()
def authentication_form():
render this form == AuthenticationForm() ?????