view downloads/forms.py @ 1018:02ae9a4a846a

ManifestStaticFilesStorage: get rid of STATIC_URL in templates.
author Brian Neal <bgneal@gmail.com>
date Sun, 06 Dec 2015 21:49:39 -0600
parents 21c592cac71c
children a5ebc74dc3f3
line wrap: on
line source
"""
Forms for the downloads application.
"""
import os

from django import forms

from downloads.models import PendingDownload
from downloads.models import AllowedExtension


class AddDownloadForm(forms.ModelForm):
    """Form to allow adding downloads."""
    title = forms.CharField(required=True,
            widget=forms.TextInput(attrs={'size': 64, 'maxlength': 64}))
    description = forms.CharField(required=False,
            widget=forms.Textarea(attrs={'class': 'markItUp smileyTarget'}))

    def clean_file(self):
        file = self.cleaned_data['file']
        ext = os.path.splitext(file.name)[1]
        allowed_exts = AllowedExtension.objects.get_extension_list()
        if ext in allowed_exts:
            return file
        raise forms.ValidationError('The file extension "%s" is not allowed.' % ext)

    class Meta:
        model = PendingDownload
        fields = ('title', 'category', 'description', 'file')