This is my first time working with crispy_forms, and I encountered an issue with it:
TemplateDoesNotExist at /purchaseswe/categories/create/
bootstrap4/uni_form.html
Request Method: GET
Request URL: http://127.0.0.1:8000/purchaseswe/categories/create/
Django Version: 5.1.6
Exception Type: TemplateDoesNotExist
Exception Value: bootstrap4/uni_form.html
Exception Location: /home/Taha/.local/share/virtualenvs/store-6rOBssYB/lib/python3.13/site-packages/django/template/backends/django.py, line 130, in reraise
Raised during: purchases.views.CategoryCreateView
Python Executable: /home/Taha/.local/share/virtualenvs/store-6rOBssYB/bin/python
Python Version: 3.13.1
Python Path:
['/home/Taha/Desktop/projects/store',
'/usr/lib64/python313.zip',
'/usr/lib64/python3.13',
'/usr/lib64/python3.13/lib-dynload',
'/home/Taha/.local/share/virtualenvs/store-6rOBssYB/lib64/python3.13/site-packages',
'/home/Taha/.local/share/virtualenvs/store-6rOBssYB/lib/python3.13/site-packages']
Server time: Thu, 06 Feb 2025 01:24:01 +0000
I searched for a solution and found that the problem could be resolved by installing the crispy-bootstrap4
package. However, the bigger issue is that Python tells me the package is not found, even though I am using pipenv
and am sure that it’s installed. I have tried the command multiple times and even tested it on another device with the same operating system, but the problem persists.
Here’s the error traceback that I received:
in rendered_content
return template.render(context, self._request)
~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^
File "/home/Taha/.local/share/virtualenvs/store-6rOBssYB/lib/python3.13/site-packages/django/template/backends/django.py", line 109, in render
reraise(exc, self.backend)
~~~~~~~^^^^^^^^^^^^^^^^^^^
File "/home/Taha/.local/share/virtualenvs/store-6rOBssYB/lib/python3.13/site-packages/django/template/backends/django.py", line 130, in reraise
raise new from exc
django.template.exceptions.TemplateDoesNotExist: bootstrap4/uni_form.html
Watching for file changes with StatReloader
Exception in thread django-main-thread:
Traceback (most recent call last):
File "/usr/lib64/python3.13/threading.py", line 1041, in _bootstrap_inner
self.run()
~~~~~~~~^^
File "/usr/lib64/python3.13/threading.py", line 992, in run
self._target(*self._args, **self._kwargs)
~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/Taha/.local/share/virtualenvs/store-6rOBssYB/lib/python3.13/site-packages/django/utils/autoreload.py", line 64, in wrapper
fn(*args, **kwargs)
~~^^^^^^^^^^^^^^^^^
File "/home/Taha/.local/share/virtualenvs/store-6rOBssYB/lib/python3.13/site-packages/django/core/management/commands/runserver.py", line 126, in inner_run
autoreload.raise_last_exception()
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^
File "/home/Taha/.local/share/virtualenvs/store-6rOBssYB/lib/python3.13/site-packages/django/utils/autoreload.py", line 87, in raise_last_exception
raise _exception[1]
File "/home/Taha/.local/share/virtualenvs/store-6rOBssYB/lib/python3.13/site-packages/django/core/management/__init__.py", line 394, in execute
autoreload.check_errors(django.setup)()
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^
File "/home/Taha/.local/share/virtualenvs/store-6rOBssYB/lib/python3.13/site-packages/django/utils/autoreload.py", line 64, in wrapper
fn(*args, **kwargs)
~~^^^^^^^^^^^^^^^^^
File "/home/Taha/.local/share/virtualenvs/store-6rOBssYB/lib/python3.13/site-packages/django/__init__.py", line 24, in setup
apps.populate(settings.INSTALLED_APPS)
~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/Taha/.local/share/virtualenvs/store-6rOBssYB/lib/python3.13/site-packages/django/apps/registry.py", line 91, in populate
app_config = AppConfig.create(entry)
File "/home/Taha/.local/share/virtualenvs/store-6rOBssYB/lib/python3.13/site-packages/django/apps/config.py", line 193, in create
import_module(entry)
~~~~~~~~~~~~~^^^^^^^
File "/usr/lib64/python3.13/importlib/__init__.py", line 88, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "<frozen importlib._bootstrap>", line 1387, in _gcd_import
File "<frozen importlib._bootstrap>", line 1360, in _find_and_load
File "<frozen importlib._bootstrap>", line 1324, in _find_and_load_unlocked
ModuleNotFoundError: No module named 'crispy-bootstrap4'