django.contrib.auth.context_processors.auth {{ user }}
टेम्पलेट संदर्भ चर को request.user या AnonymousUser पर सेट करता है।
def auth(request):
"""
Returns context variables required by apps that use Django's authentication
system.
If there is no 'user' attribute in the request, uses AnonymousUser (from
django.contrib.auth).
"""
# If we access request.user, request.session is accessed, which results in
# 'Vary: Cookie' being sent in every request that uses this context
# processor, which can easily be every request on a site if
# TEMPLATE_CONTEXT_PROCESSORS has this context processor added. This kills
# the ability to cache. So, we carefully ensure these attributes are lazy.
# We don't use django.utils.functional.lazy() for User, because that
# requires knowing the class of the object we want to proxy, which could
# break with custom auth backends. LazyObject is a less complete but more
# flexible solution that is a good enough wrapper for 'User'.
def get_user():
if hasattr(request, 'user'):
return request.user
else:
from django.contrib.auth.models import AnonymousUser
return AnonymousUser()
return {
'user': SimpleLazyObject(get_user),
'messages': messages.get_messages(request),
'perms': lazy(lambda: PermWrapper(get_user()), PermWrapper)(),
}
आप setting context_object_name द्वारा समस्या के समाधान कर सकते हैं: इसलिए, यह {{ user }}
संदर्भ अपने DetailView द्वारा बनाई चर ओवरराइड करता है। उदाहरण के लिए, इस {{ user_object }}
संदर्भ चर, DetailView के उपयोगकर्ता के लिए सेट सक्षम हो जाएगा:
url(
r'^users/(?P<pk>\d+)/$',
DetailView.as_view(
model = User,
template_name = 'doors/users/detail.html',
context_object_name = 'user_object'
),
name = 'users_detail'
)
खुदाई गहरी, get_context_object_name() के लिए दस्तावेज़ पढ़ें।
मुझे इस पर 100% यकीन नहीं है, लेकिन मेरे पास अन्य सामान्य विचार थे, और चर मॉडल का नाम है। उदाहरण के लिए, यदि मैंने 'ListView' में 'मॉडल = पोल' किया है, तो चर 'poll_list' बन जाता है। 'DetailView' में वही' मतदान 'का एक चर नाम देता है। शायद यह Django v1.4 में कुछ नया है? – hobbes3
आप सही हैं, मैंने उपर्युक्त उत्तर तय किया है। आपकी प्रतिक्रिया के लिए आपका धन्यवाद ! – jpic