Re: Returning submitted formset data to the template for further editing

2014-06-28 Thread Andrew Choi
Daniele, It doesn't seem like there's an easier way to do what you're proposing. However, what's the form data manipulation that you need to do for some of these forms? Is there a way to separate that from the form set submission? Andrew On Saturday, June 28, 2014 12:26:34 AM UTC+9, Daniele Pr

Re: Update user and user profile same form

2014-06-29 Thread Andrew Choi
Henrique, It looks like what you're looking for is a formset: https://docs.djangoproject.com/en/1.6/topics/forms/formsets/ Andrew On Saturday, June 28, 2014 11:28:35 PM UTC+9, Henrique Oliveira wrote: > > Hi Guys, > > I have this model: > > class Member(models.Model): > user = models.OneToO

Re: admin ViewDoesNotExistError

2014-06-29 Thread Andrew Choi
Martin, Perhaps try copying over the folder configuration from the non-error-triggering project and try to continue from there. Also, perhaps permissions are to blame? Andrew On Sunday, June 29, 2014 2:22:11 AM UTC+9, Martin Spasov wrote: > > Hello guys, I am following the Tango with Django tu

Re: Returning submitted formset data to the template for further editing

2014-07-02 Thread Andrew Choi
cida wrote: On Sat, Jun 28, 2014, Andrew Choi wrote: It doesn't seem like there's an easier way to do what you're proposing. However, what's the form data manipulation that you need to do for some of these forms? Is there a way to separate that from the form set subm