1
vote
3answers
499 views
Firefox handles xxx.submit(), Safari doesn’t … what can be done?
I'm trying to make a pull down menu post a form when the user selects (releases the mouse) on one of the options from the menu. This code works fine in FF but Safari, for some reason, doesn't subm …
1
vote
6answers
1k views
Adding a generic image field onto a ModelForm in django
I have two models, Room and Image. Image is a generic model that can tack onto any other model. I want to give users a form to upload an image when they pos …
1
vote
2answers
167 views
Generating forms from models (a la django ModelForms) in Objective-C
I'm taking the plunge into iPhone development after about two years working with django. As I've done tutorials and read documentation, one of the things that strikes me as inconvenient about the …
8
votes
Cleaner way to query on a dynamic number of columns in Django?
Build the query as a dictionary and use the ** operator to unpack the options as keyword arguments to the filter method.
op_kwargs = {}
for op in self.cleaned_data['options']:
o …
10
votes
Beginner: Trying to understand how apps interact in Django
Take a look at django's built-in contenttypes framework:
django.co …
2
votes
Generating Login and Registration Forms with Contrib.Auth in Django
James Bennet's django-registration is an excellent helper application used for a common registration / login pattern.
…
3
votes
How to localize Content of a Django application
I would suggest checking out django-multilingual. It is a third party app that lets you define translation fields on your …
3
votes
Django: How can I use my model classes to interact with my database from outside Django?
Depending on your specific needs, django-command-extensions might save you a bit of time. To …
9
votes
Can I access constants in settings.py from templates in Django?
Django provides access to certain, frequently-used settings constants to the template such as settings.MEDIA_URL and some of the language settings if you use django's built in generic …
0
votes
Generic many-to-many relationships
You might get around this problem by simplifying your schema to include a single Client table with a flag to indicate what type of client it was, instead of having two separate models. …
0
votes
Custom Markup in Django
Django comes with a built-in contrib app that provides filters to display data using several different markup languages, including textile and markdown.
See …
2
votes
django and executing a separate .py to manipute a database
You might also check out django-extensions, which has a built-in manage.py extension called "runscript" that execu …
