Inline formset for django project

2012-05-15 Thread William Ibarra Rodriguez
H! i need a way to use a inlineformset in my app, anyone knows how to use the inline tabular o stack formset of the admin site in an app?? -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegr

inline formset error, help!!!

2012-05-07 Thread William Ibarra Rodriguez
i have a project in which i try to use the inline formset factory so when i try to fill the form it throw the following error: UnboundLocalError at /catalogo/adicionar/articulo/ local variable 'imagen_formset' referenced before assignment in my view i had: if request.POST: form

Re: UpdateView issue

2012-05-04 Thread William Ibarra Rodriguez
i made it but isn't solved, maybe i need to override another function in the class UpdateUserView? -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com. To unsubscribe from this group

UpdateView issue

2012-05-04 Thread William Ibarra Rodriguez
i start working with django 1.3 class based views so i have the following problem: when i try to update a user using django,contrib,auth.models (in this case User model) the is_active field doesn't update. so i have the following view: class UpdateUserView(UpdateView): model = User#

Re: users and groups management without admin site??

2012-05-03 Thread William Ibarra Rodriguez
maybe using django.contrib.admin or django.contrib.auth i can do that, but i don´t have any start point, so if have any thought please share it. i want to use the options that django provide(for example the password_change and the login or logout),i dont want to rewrite code because i don´t have so

Re: users and groups management without admin site??

2012-05-03 Thread William Ibarra Rodriguez
i need manage the users and groups in the same way that admin site does, but i won't use the admin site, i need web-based interface inside my project to do that. -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email t

Validation error by working with inline formset

2012-05-03 Thread William Ibarra Rodriguez
In my django project I've working with inline formset factory to join two forms, so when i try to edit the main form this error happens ValidationError at /catalogo/editar/articulo/3/ [u'ManagementForm data is missing or has been tampered with'] my models.py is: class Articulo(models.Model):

users and groups management without admin site??

2012-05-03 Thread William Ibarra Rodriguez
i've working in a django project and i need to know a way to manage users and groups without using the admin site. my django version is 1.3.1 .. -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users