diff --git a/bulletin/models.py b/bulletin/models.py index d017f04..f99f07f 100644 --- a/bulletin/models.py +++ b/bulletin/models.py @@ -18,7 +18,7 @@ def validate_file_extension(value): class Bulletin(Resource): content = models.TextField(_('Bulletin Content'), blank = True) - file_content = models.FileField(_('Bulletin Data (Goals)'), blank = True, upload_to = 'files/', validators = [validate_file_extension]) + file_content = models.FileField(_('Bulletin Data (Goals)'), blank = True, upload_to = 'bulletin/', validators = [validate_file_extension]) class Meta: verbose_name = _('Bulletin') -- libgit2 0.21.2