My project is in folder: webinterface/ I have defined a custom "webinterface_tags.py" inside my project:
webinterface/templatetags/webinterface_tags.py My webinterface/settings.py says: INSTALLED_APPS = ( 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.sites', 'django.templatetags', # done 11 nov ) I have included a {% load webinterface_tags %} statement in a template/search.html file. But while running this application on django on apache server, django is not able to find webinterface_tags file. Response is: 'webinterface_tags' is not a valid tag library: Could not load template library from django.templatetags.webinterface_tags, No module named webinterface_tags Am i missing any of the settings which I need to do for webinterface/ templatetags directory ? I checked online, but there is not any concrete example. Kindly help! -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.