Hi, I'm new to Django and trying to get an existing application to work on my development machine.
When running the project, I get the following error:
TemplateSyntaxError at /
Caught BundleError while rendering: 'styles/libs/jquery-ui-timepicker-addon.css' not found (using staticfiles finders)
Where is he searching for the file? All paths are set correctly in settings.py.
The css is defined in assets.py:
stylesheets = Bundle( reset_defaults,
'styles/libs/jquery-ui-timepicker-addon.css',
main_styles,
filters='cssmin',
output='combined/styles/main.css' )
Can anyone give me an indication of where to search for this problem?
Any help would be greatly appreciated
Kind
regards
Y.