如何通过django admin上传

时间:2010-11-29 08:01:57

标签: python django upload

    documents = models.FileField(upload_to=settings.FILE_PATH, verbose_name=
_('Attach Your Documents'), help_text=_('.pdf file not exceeding 5 mb.'), 
null=True, blank=True)

通过这种方式,我正在为upload中的django admin文件创建模型。现在,我想在S3上点击save时将此文件上传到django admin。我应该在哪里写uploading到s3的方法。我不知道。

1 个答案:

答案 0 :(得分:3)

您可以尝试django-storages