1
vote
Spambots are cluttering my log file [Django]
Django should be throwing a 404, not a 500, if the URL doesn't match any entries in your URLConf.
…
4
votes
Foreign key from one app into another in Django
According to the docs, your second attempt should work:
To refer to models defined in another application, you must instead explicitly specify the application label. For exam …
7
votes
In Django, is it possible to access the current user session from within a custom tag?
You should be able to add the request context processor in your settings.py file:
TEMPLATE_CONTEXT_PROCESSORS = ("django.core.context_processors.auth",
"django.core.context_processors …
1
vote
Django Foreign Keys Read Only
Edit: Actually, I don't think this will work for inline models..
Django will be adding native read-only fields in Django 1.1, which should be released around the middle of March.
…
3
votes
Navigation in django
You could apply a class or id to the body element of the page, rather than to a specific nav item.
HTML:
<body class="{{ nav_class }}">
CSS:
…
