So, you need to limit choices, because the list of related choices is too long? Then do NOT use limit_choices_to
parameter on the ForeignKey! Why? Because you risk having options missing in your forms, deleting relations unknowingly.
For instance, consider that you have the following case, expressed in pseudo code: …
Read the rest of this entry »Often the Django Admin should look a little different for the sake of your users or for the sake of yourself (running multiple django sites with identical looks and titles can be such a pain). Often users don't know what Django is, and it takes ages to explain, and even …
Read the rest of this entry »