我正在使用内置视图来执行用户登录:
(r'^login/$', 'django.contrib.auth.views.login', {'template_name':'login.html'}),
其中 login.html 是模板。login.html 已正确加载。但是我需要将我的变量传递给模板。我按照以下方式( STATIC_URL )做我自己的观点:
class AboutView(TemplateView):
template_name = 'about.html'
def get_context_data(self, *args, **kwargs):
context = super(AboutView, self).get_context_data(*args, **kwargs)
context['STATIC_URL'] = settings.STATIC_URL
return context
那么,如何使用内置的“django.contrib.auth.views.login”视图将“STATIC_URL”传递给“login.html”?