User Toba - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T23:46:27Z http://stackoverflow.com/feeds/user/40688 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/340888/navigation-in-django/341713#341713 3 Answer by Toba for Navigation in django Toba 2008-12-04T19:09:33Z 2008-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>&lt;body class="{{ nav_class }}"&gt; </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#340442 1 Answer by Toba for Django Foreign Keys Read Only Toba 2008-12-04T12:32:06Z 2008-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#335825 7 Answer by Toba for In Django, is it possible to access the current user session from within a custom tag? Toba 2008-12-02T23:33:15Z 2008-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#323905 4 Answer by Toba for Foreign key from one app into another in Django Toba 2008-11-27T14:27:45Z 2008-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#317923 1 Answer by Toba for Spambots are cluttering my log file [Django] Toba 2008-11-25T16:17:47Z 2008-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#490011 Comment by Toba on Can Django do auto-admin for my PHP app's existing schema? Toba 2009-01-29T06:25:45Z 2009-01-29T06:25:45Z You 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#427160 Comment by Toba on In django, what is a "slug"? Toba 2009-01-09T14:40:11Z 2009-01-09T14:40:11Z You can also add a unique constraint to the slug. http://stackoverflow.com/questions/385895/django-model-naming-convention/385951#385951 Comment by Toba on Django model naming convention Toba 2008-12-22T18:27:54Z 2008-12-22T18:27:54Z See ghoseb's answer above about correctly pluralizing something like Categories. http://stackoverflow.com/questions/90032/reasons-not-to-use-django/92535#92535 Comment by Toba on Reasons not to use django Toba 2008-12-04T22:00:45Z 2008-12-04T22:00:45Z Aggregation will be arriving in Django 1.1 around the middle of March.