1
vote
3answers
527 views
Best practice for uploading and image file with Django Forms (Django 1.0)
Hi friends, 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, un …
