models.py :

 `class Document(models.Model):
     docfile = models.FileField(upload_to='documents/%Y/%m/%d')
     user = models.ForeignKey(User, null=False, blank= False)
`


I have created a model for file upload as shown above. docfile is the field 
that represents file to be uploaded and user field stores the name of the 
user that is uploading the file.I want the additional fields so that file 
uploaded is visible to the ones with whom it has been shared. Tell me the 
fields for achieving the sharing task.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/84c40695-9652-443a-98d0-b5d416f673ea%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to