1
vote
1answer
1k views
How to save inline formset models in Django?
Formsets have a .save() method, and the documentation says to save in vi …
1
vote
How to store a dictionary on a Django Model?
As Ned answered, you won't be able to query "some data" if you use the dictionary approach.
If you still need to store dictionaries then the best approach, by far, is the PickleField class …
3
votes
How can i learn CSS easily?
CSS by itself is fairly easy to understand and other answers have pointed to a lot of good CSS resources. The real challenge is learning all the quirks and bugs in each browser and this takes a lo …
2
votes
Any drawbacks or gotchas to using Jinja2 templates in Django?
I haven't used Jinja2 with an actual Django site yet, but I did convert an application using Django templates in standalone mode over to Jinja2 templates. The only (very minor) problem I encounter …
5
votes
Is it better to dive into Rails or Django going into the future?
Django may not have a huge user base relative to Rails, but it's certainly big enough to be a very healthy project so that shouldn't really make a difference.
I think your choice should jus …
5
votes
How do I add multiple arguments to my custom template filter in a django template?
It is possible and fairly simple.
Django only allows one argument to your filter, but there's no reason you can't put all your arguments into a single string using a comma to separate them. …
2
votes
Django form - in-place edit of data from reverse foreign key join
Yes, Django's inlineformset_factory is exactly what you need.
Docs: Model Formsets and …
1
vote
How to save inline formset models in Django?
I discovered my problem, and it's embarrassing.
In the parent model form I had exclude = ('...',) in the Meta class, and one of the excluded fields was critical for the relatio …
3
votes
What is the best UI for selecting tags from a list of existing tags?
If you can use jquery there are several plugins to handle this and save you the JS coding:
Tag Suggest which can h …
8
votes
Advice on Python/Django and message queues
In your specific case, where it's just an email queue, I wold take the easy way out and use django-mailer. As a nice side bonue …
6
votes
Generating and submitting a dynamic number of objects in a form with Django
Formsets!
Also, the equivalent for forms generated directly models are …
1
vote
Achieving emailing between website users without “Mailing Server” configuring?.
There are a few django apps out there to handle messaging between users, but the only one that seems to be active is:
djan …
1
vote
Django settings.EMAIL_HOST_USER problem
EMAIL_HOST_USER is only used for authentication on the mail server.
You probably need to also set DEFAULT_FROM_EMAIL.
…
12
votes
django-cart or Satchmo?
Well if you want to use django-cart you should view it as a starting point for developing your own. The last commit (r4) for the project was November 2006.
By comparison, the last commit ( …
1
vote
Deploying django app on Apache mod_python
Louis, your configuration looks exactly like ones I used before I switched to mod_wsgi, so there must be something else wrong. Maybe you are missing an __init__.py file in /home/git/DjangoProjects …
