11
votes
In Django, where is the best place to put short snippets of HTML-formatted data?
Sounds like an inclusion tag is what you're looking for. You could have a template and t …
13
votes
In Django is there a way to display choices as checkboxes?
In terms of the forms library, you would use the MultipleChoiceField field with a …
0
votes
Is there a way to define which fields in the model are editable in the admin app?
In addition to overriding save to provide the generated value you want, you can also use the ex …
3
votes
Django/Python - Grouping objects by common set from a many-to-many relationships
Have you tried sorting the list first? The algorithm you proposed should work, albeit with lots of database hits.
import itertools
cars = [
{'car': 'X2', 'mods': [1,2]},
{' …
1
vote
Can “list_display” in a Django ModelAdmin display attributes of ForeignKey fields?
According to the documentation, you can only display the __unicode__ representation of a ForeignKey:
…
5
votes
Is it possible to have separate SQLite databases within the same Django project?
Yes - the low-level API for this is in place, it's just missing a convenient high-level API at the moment. These quotes are from …
13
votes
Django signals vs. overriding save method
Save/delete signals are generally favourable in situations where you need to make changes which aren't completely specific to the model in question, or could be applied to models which have somethi …
4
votes
Django UserProfile… without a password
A user profile (as returned by django.contrib.auth.models.User.get_pr …
2
votes
Django: Inject errors into already validated form?
You can add additional error details to the form's _errors attribute directly:
…
1
vote
How do I get python-markdown to additionally “urlify” links when formatting plain text?
There's an extra for this in python-markdown2:
http://code.google.com/p/python-markdown2/wiki/LinkPatter …
10
votes
How can I write a method within a Django model to retrieve related objects?
You get this for free:
http://docs.djangoproject.com/en/dev/topics/db/queries/#bac …
5
votes
How does one put a link / url to the web-site’s home page in Django?
You could give the URL configuration which you're using to handle the home page a name and use that:
urls.py:
from django.conf.urls.defaults import *
urlpatterns = patterns …
2
votes
Django Forms - How to Use Prefix Parameter
You process each form as you normally would, ensuring that you create instances which have the same prefixes as those used to generate the form initially.
Here's a slightly awkward example …
3
votes
Will Django be a good choice for a permissions based web-app?
ModelAdmin objects have has_add_permission, has_change_permis …
5
votes
How to disable HTML encoding when using Context in django
To turn it off for a single variable, use mark_safe:
from django.utils.safestring import mark_safe
t = loader.get_template("sometemplate")
c = Context({
'foo': 'bar …
