Skip to content

Commit

Permalink
Update directory_listing.html
Browse files Browse the repository at this point in the history
Fix TemplateDoesNotExist error in Filer directory listing

Issue:
TemplateDoesNotExist error was occurring in Filer directory listing due to a mismatch in template inclusion.
Changed include to 
Solution:
Updated template inclusion from "admin/filer/folder/directory_table.html" to "admin/filer/folder/directory_table_list.html" in jazzmin's directory_listing.html.

This commit resolves the reported issue by aligning the template inclusion with the correct path.

Closes: #500
  • Loading branch information
reedjones authored Feb 28, 2024
1 parent 586e81f commit 8cfc589
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@
{% if action_form and actions_on_top and paginator.count and not is_popup %}
{% filer_actions %}
{% endif %}
{% include "admin/filer/folder/directory_table.html" %}
{% include "admin/filer/folder/directory_table_list.html" %}
{% if action_form and actions_on_bottom and paginator.count and not is_popup %}
{% filer_actions %}
{% endif %}
Expand Down

0 comments on commit 8cfc589

Please sign in to comment.