diff --git a/pyproject.toml b/pyproject.toml index 3b40970..28a5eef 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "django-filepond-widget" -version = "0.4.0" +version = "0.5.0" description = "" readme = "README.md" authors = [{ name = "Jelle Besseling", email = "jelle@pingiun.com" }] diff --git a/src/django_filepond_widget/fields.py b/src/django_filepond_widget/fields.py index 920a943..5f46d39 100644 --- a/src/django_filepond_widget/fields.py +++ b/src/django_filepond_widget/fields.py @@ -7,7 +7,7 @@ class FilePondWidget(forms.FileInput): needs_multipart_form = True - template_name = "filepond_widget/widget.html" + template_name = "django_filepond_widget/widget.html" def __init__(self, attrs=None): super().__init__(attrs)