5
votes
When to create a new app (with startapp) in Django?
James Bennett has a wonderful set of slides on how to organized reusable apps.
…
0
votes
Difference between admin.site.root and admin.site.urls
The Django Book speaks of version 0.9.6. Since then the admin has been rewritten. In Django 1.0 the whole admin is served by a single view (admin.site.root) which parses the rest of th …
2
votes
Django : Adding a property to the User class. Changing it at runtime and UserManager.create_user
If Django 1.1 beta isn't too bleeding edge for you, try proxy models.
…
2
votes
How to ensure that a javascript file is included only once in Django
I'd mostly bite the bullet and load jQuery with every template. But if you really really really have to have this feature, then I'd recommend a custom template tag. …
0
votes
Where does the widgets/foreign.html file reside in django trunk?
The newforms admin has changed things some what. If you haven't yet done so, I'd first recommend you to study what's new with newforms and especially newforms admin.
Here's the (wrapper for …
0
votes
implementing a template tag within a generic app - django
The ContentTypeManager has somewhat solved your first problem for you. You can use the method get_for_model, which accepts both a class or an instance. Read more at …
