Formset

2009-09-17 Thread mag
Hello, I'm novice in Django and I' would like to create an edition formset to edit questions, for example. I' already have a formset to add question: My add formset : def manage_polls(request): PollFormSet = formset_factory(PollForm, extra=2) if request.method == 'POST': formset

Distributing application

2010-04-29 Thread Mag
I have been using Django and I like it a lot. I was wondering what is the best way to distribute my application? Previously, with Apache tomcat it was very easy to distribute it. I provided the tomcat server and the war file and everything was done. Is there a tool or a preferred way to do this?