Tagged Questions
6
votes
3answers
7k views
Best practice for uploading and image file with Django Forms (Django 1.0)
could you please help me to get image upload working on a view with django forms
Models.py
class User_Profile(models.Model):
user = models.OneToOneField(User, unique=True, related_name='profile')
...