2
votes
How do I implement a common interface for Django related object sets?
First, here are two Django snippets that should be exactly what you're looking for:
Model inheritance with conten …
4
votes
Multiple images per Model
Variable lists, also known as a many-to-one relationship, are usually handled by making a separate model for the many and, in that model, using a ForeignKey to the "one".
T …
0
votes
In Django, can you not use a string join on a ManyToManyField? Is ManyToMany not just a list?
No, ManyToManyField is not a list, it's just a single key and there will be one Match instance for each player in the match.
You don't want to do a query in the __unicode__() method because …
1
vote
What are good ways to upload bulk .csv data into a webapp using Django/Python?
Take a look at this project: django-batchimport
It might be overkill for you, but it can still give you some good i …
0
votes
Fixing the auth_permission table after renaming a model in Django
I got about half-way through a long answer that detailed the plan of attack I would take in this situation, but as I was writing I realized there probably isn't any way around having to do a mainte …
4
votes
How to get ‘./manage.py syncdb’ to create additional views or run custom SQL?
Yes, there are signals you can catch after a syncdb.
See management signals for docs.
…
0
votes
filter for many to many field
If you use the Django development version, or wait until version 1.1 is released, then your filters can …
1
vote
What is the best way to access stored procedures in Django’s ORM.
If you want to look at an actual running project that uses SP, check out minibooks. A good deal of custom SQL an …
3
votes
How do you make a Django app pluggable?
There are several important details for making sure an app can be reusable and I think it's best to link to two of the more important sets of documentation on the topic:
…
2
votes
Django model inheritance w/ custom inclusion_tags
Take advantage of Django's contenttypes framework to identify your model types.
See this snippet: …
6
votes
How to agnostically link any object/Model from another Django Model?
django-tagging uses Django's contenttypes framework. The docs do a much better job of explaining it than …
3
votes
Tying in to Django Admin’s Model History
The admin history is just an app like any other Django app, with the exception being special placement on the admin site.
The model is in django.contrib.admin.models.LogEntry.
When …
0
votes
Models unique_together constraint + None = fail?
I don't know for sure this will fix your problem, but I suggest testing your code on the latest Django trunk code. Get it with:
svn co http://code.djangoproject.com/svn/django/trunk …
7
votes
How to Model a Foreign Key in a Reusable Django App?
If you think the link app will always point to a single app then one approach would be to pass the name of the foreign model as a string containing the application label instead of a class referenc …
0
votes
How can I limit the available choices for a foreign key field in a django modelformset?
You can dynamically change the queryset on a form using functional methods (curry), closures, or callbacks. See all three methods in the first three answers to " …
