Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dateitypen beim upload #6

Open
mircohacker opened this issue Dec 28, 2018 · 2 comments
Open

Dateitypen beim upload #6

mircohacker opened this issue Dec 28, 2018 · 2 comments

Comments

@mircohacker
Copy link
Collaborator

nur bestimmte Dateitypen zulassen wegen security und so

@elogy
Copy link
Member

elogy commented Dec 28, 2018

Righty, das fehlt in der Tat. Idee: Model-Feld anpassen und einen builtin Validator drauf loslassen.

from django.core.validators import FileExtensionValidator
pdf = models.FileField('PDF mit Ausschreibung',
                          validators=[FileExtensionValidator(allowed_extensions=['pdf'])],
                           blank=True)

Problem ist natürlich, dass man alles mögliche hochladen und es in .pdf umbenennen könnte. Das würde dann unter anderem die PDF-Preveiw in der Detailansicht ziemlich... kaputt machen 🙈

@elogy
Copy link
Member

elogy commented Dec 29, 2018

Hab in c3ec797 den Validator mit eingebaut. Ich fände es gut, zusätzlich Clientseitig festzulegen was man hochladen darf, allerdings sehe ich ad-hoc keine Möglichkeit, das Äquivalent zu

<input type="file" accept=".pdf"></input>

zu generieren. Im schlimmsten Fall muss man sich dafür ein eigenes Widget schreiben... meh.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants