Mi Reflejo wrote:
> Thank you, it helps me.
> 
> Now lets supose that i don't want to show some fields from Users model. For
> example: last_login
> 
> The only way that I've found is
> del UserFormModel.base_fields['last_login']
> 
> But in the other hand, i need to fill this value with datetime.datetime.now
> ().
> 
> So i can't just delete dictionary entry. i could add "editable=false" If it
> was my model, but how can i do it for User model?
> 
> Thank you again,

Hi,

to hide some field use HiddenInput widget

UserFormModel.base_fields['last_login'].widget = widgets.HiddenInput()

hope it helps

BR,
-- 
Daniel Arbanas

--~--~---------~--~----~------------~-------~--~----~
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, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to