Hi Manuel,

On Apr 9, 2:46 pm, Manuel Meyer <[EMAIL PROTECTED]> wrote:
> in a model Article i want to store the user who created the article.
> I have this:
>
> class Article(models.Model):
>      ....
>      owner = models.ForeignKey(User, null=True, blank=True)
>
> But I wonder, if it is possible, to set the owner in an overwritten
> save() method, as a drop-down list is not what i want here, as the
> owner should be the person, who created this article.
> I don't need a real cms with workflow and such stuff.
> Another solution could be, that the drop-down list only contains the
> user, who created this article? How could this work?

This depends on whether you're writing your own form, or using the
admin application. In your own app then this should be easy: don't
display the drop down and populate it in your view function when you
receive the form data.

I've been doing something similar with the admin app. You need to be
using the newforms-admin branch, however. If you are then have a look
at the howto on the wiki:
http://code.djangoproject.com/wiki/NewformsHOWTO

In short: it is possible but we will need a little more detail on
where your form data is coming from.

Regards,

Felix
--~--~---------~--~----~------------~-------~--~----~
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