本文整理匯總了Python中django.views.generic.edit.FormView方法的典型用法代碼示例。如果您正苦於以下問題:Python edit.FormView方法的具體用法?Python edit.FormView怎麽用?Python edit.FormView使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類django.views.generic.edit
的用法示例。
在下文中一共展示了edit.FormView方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: get_context_data
# 需要導入模塊: from django.views.generic import edit [as 別名]
# 或者: from django.views.generic.edit import FormView [as 別名]
def get_context_data(self, **kwargs):
# IMPORTANT! this super call cannot be reduced to super()
# TODO: add a test that fails with super()
context = super(edit_views.FormView, self).get_context_data(**kwargs)
current_site = self.request.site
context.update(
{
self.redirect_field_name: self.get_redirect_url(),
"site": current_site,
"site_name": current_site.name,
}
)
if self.extra_context is not None:
context.update(self.extra_context)
return context
示例2: get_form_class
# 需要導入模塊: from django.views.generic import edit [as 別名]
# 或者: from django.views.generic.edit import FormView [as 別名]
def get_form_class(self):
# @@@ django: this is a workaround to not having a dedicated method
# to initialize self with a request in a known good state (of course
# this only works with a FormView)
self.primary_email_address = self.request.user.email
return super(SettingsView, self).get_form_class()