TemplateDoesNotExist exception on a new project
See original GitHub issueHi, I tried to install django-quill-editor via pip in a new project but I keep seeing this in admin when I try to add a new QuillPost
Issue Analytics
- State:
- Created 3 years ago
- Comments:5 (2 by maintainers)
Top Results From Across the Web
Django TemplateDoesNotExist? - python - Stack Overflow
First solution: These settings. TEMPLATE_DIRS = ( os.path.join(SETTINGS_PATH, 'templates'), ). mean that Django will look at the templates from templates/ ...
Read more >How to resolve Django TemplateDoesNotExist Error on ...
This video will show you how to resolve Django TemplateDoesNotExist Error on Windows machine.
Read more >Templates - Django documentation
A Django project can be configured with one or several template engines (or even ... TemplateDoesNotExist exceptions raised when trying to load a...
Read more >Solving Django Error: TemplateDoesNotExist at /app_name
How to solve TemplateDoesNotExist error in Django projects, reason for TemplateDoesNotExist error ... These template files are project level template files.
Read more >Path issue (TemplateDoesNotExist) - Google Groups
Path issue (TemplateDoesNotExist) ... following log (you can see full log and the whole project in the attachment), ... Exception Type: TemplateDoesNotExist.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@skilaren Thanks for the advice @nittolese Fixed a bug where static files were not included in the distribution package. If you upgrade to version 0.10.0, it works normally.
pip install django-quill-editor --upgrade
You can fix it by placing templates folder from repository to the folder specified in your project settings in DIRS in TEMPLATES and set the
FORM_RENDERER = 'django.forms.renderers.TemplatesSetting'