Tagged Questions
1
vote
1answer
53 views
Django FileField.save() makes duplicate files
I have user submitted content that I am trying to write to a file and then save to a FileField.
so I have a model that looks like this:
class Revision(models.Model):
def ...
1
vote
2answers
176 views
Django ImageField/FileField save uploaded file using model's pk
I'm converting a legacy site (originally written in rails) and by default the images were saved using the format {{pk}}.{{extension}} and that file was always overwritten if a new file is uploaded.
...
1
vote
1answer
49 views
How does one alter a FileField of an object in Django?
I have a model called ClassFile that takes a FileField (document):
class ClassFile(models.Model):
timestamp = models.DateTimeField(auto_now_add=True, editable=False)
document = ...
1
vote
1answer
228 views
How to check if a FileField has been modified in the Admin of Django?
I am trying to do a model with a file that shouldn't be modified. But the comment of the file can be.
Here is what I did, but we cannot modify the comment.
How can I test if a new file (using the ...
0
votes
1answer
824 views
Locating file path from a <InMemoryUploadedFile> Django object
I have a Django app which, submitting a package, should return values that are inside it..
Submitted the form to a view called "insert":
request.FILES['file']
returns the file objects, but it is of ...