Skip to content

Commit

Permalink
Fix widget html path
Browse files Browse the repository at this point in the history
  • Loading branch information
pingiun committed Nov 10, 2022
1 parent c07df62 commit b47a05a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 = "[email protected]" }]
Expand Down
2 changes: 1 addition & 1 deletion src/django_filepond_widget/fields.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit b47a05a

Please sign in to comment.