User Toba - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T23:46:27Zhttp://stackoverflow.com/feeds/user/40688http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/340888/navigation-in-django/341713#3417133Answer by Toba for Navigation in djangoToba2008-12-04T19:09:33Z2008-12-04T19:09:33Z<p>You could apply a class or id to the body element of the page, rather than to a specific nav item.</p>
<p>HTML:</p>
<pre><code><body class="{{ nav_class }}">
</code></pre>
<p>CSS:</p>
<pre><code>body.home #nav_home,
body.about #nav_about { */ Current nav styles */ }
</code></pre>
http://stackoverflow.com/questions/339969/django-foreign-keys-read-only/340442#3404421Answer by Toba for Django Foreign Keys Read OnlyToba2008-12-04T12:32:06Z2008-12-04T12:32:06Z<p>Edit: Actually, I don't think this will work for inline models..</p>
<p>Django will be adding native read-only fields in Django 1.1, which should be released around the middle of March.</p>
<p><a href="http://www.djangosnippets.org/snippets/937/" rel="nofollow">Read Only Admin Fields</a> (<a href="http://www.djangosnippets.org/snippets/937/" rel="nofollow">http://www.djangosnippets.org/snippets/937/</a>)</p>
<p>This snippet will allow you to set fields as read-only in the admin.</p>
http://stackoverflow.com/questions/335231/in-django-is-it-possible-to-access-the-current-user-session-from-within-a-custom/335825#3358257Answer by Toba for In Django, is it possible to access the current user session from within a custom tag?Toba2008-12-02T23:33:15Z2008-12-02T23:33:15Z<p>You should be able to add the request context processor in your settings.py file:</p>
<p><code>TEMPLATE_CONTEXT_PROCESSORS = ("django.core.context_processors.auth",
"django.core.context_processors.debug",
"django.core.context_processors.i18n",
"django.core.context_processors.media",
'django.core.context_processors.request',)</code></p>
<p>This will do the same thing as the current answer, without having to add a custom file.</p>
http://stackoverflow.com/questions/323763/foreign-key-from-one-app-into-another-in-django/323905#3239054Answer by Toba for Foreign key from one app into another in DjangoToba2008-11-27T14:27:45Z2008-11-27T14:27:45Z<p>According to the docs, your second attempt should work:</p>
<blockquote>
<p>To refer to models defined in another application, you must instead explicitly specify the application label. For example, if the Manufacturer model above is defined in another application called production, you'd need to use:</p>
</blockquote>
<pre><code>class Car(models.Model):
manufacturer = models.ForeignKey('production.Manufacturer')
</code></pre>
<p>Have you tried putting it into quotes?</p>
http://stackoverflow.com/questions/315363/spambots-are-cluttering-my-log-file-django/317923#3179231Answer by Toba for Spambots are cluttering my log file [Django]Toba2008-11-25T16:17:47Z2008-11-25T16:17:47Z<p>Django should be throwing a 404, not a 500, if the URL doesn't match any entries in your URLConf.</p>
<p><a href="http://docs.djangoproject.com/en/dev/topics/http/urls/#handler404" rel="nofollow">http://docs.djangoproject.com/en/dev/topics/http/urls/#handler404</a></p>
<p>You need to provide a 404 template:</p>
<blockquote>
<p>If you don't define your own 404 view -- and simply use the default, which is recommended -- you still have one obligation: To create a 404.html template in the root of your template directory. The default 404 view will use that template for all 404 errors.</p>
</blockquote>
http://stackoverflow.com/questions/489948/can-django-do-auto-admin-for-my-php-apps-existing-schema/490011#490011Comment by Toba on Can Django do auto-admin for my PHP app's existing schema?Toba2009-01-29T06:25:45Z2009-01-29T06:25:45ZYou will probably have to do some tinkering with the generated models.py file. Make sure that the classes are in the correct order, make sure that all of the primary keys are correct, etc.http://stackoverflow.com/questions/427102/in-django-what-is-a-slug/427160#427160Comment by Toba on In django, what is a "slug"?Toba2009-01-09T14:40:11Z2009-01-09T14:40:11ZYou can also add a unique constraint to the slug.http://stackoverflow.com/questions/385895/django-model-naming-convention/385951#385951Comment by Toba on Django model naming conventionToba2008-12-22T18:27:54Z2008-12-22T18:27:54ZSee ghoseb's answer above about correctly pluralizing something like Categories.http://stackoverflow.com/questions/90032/reasons-not-to-use-django/92535#92535Comment by Toba on Reasons not to use djangoToba2008-12-04T22:00:45Z2008-12-04T22:00:45ZAggregation will be arriving in Django 1.1 around the middle of March.