I have a project all set up and works famously in 1.6.3, however upon updating to FeinCMS 1.7.4, it acts as it I didn't register anything. My models.py is perfectly formatted and now striped of everything but a dumb simple Page module. The app is firmly in the settings and has been confirmed there by using manage.py shell and some exceptions. Am I missing a step that was introduced in the newer versions or something?
Traceback (most recent call last):
File "/usr/lib/python2.7/wsgiref/handlers.py", line 85, in run
self.result = application(self.environ, self.start_response)
File "/var/www/vhosts/newnaturalchemistry/src/django/django/core/handlers/wsgi.py", line 241, in __call__
response = self.get_response(request)
File "/var/www/vhosts/newnaturalchemistry/src/django/django/core/handlers/base.py", line 179, in get_response
response = self.handle_uncaught_exception(request, resolver, sys.exc_info())
File "/var/www/vhosts/newnaturalchemistry/src/django/django/core/handlers/base.py", line 224, in handle_uncaught_exception
if resolver.urlconf_module is None:
File "/var/www/vhosts/newnaturalchemistry/src/django/django/core/urlresolvers.py", line 323, in urlconf_module
self._urlconf_module = import_module(self.urlconf_name)
File "/var/www/vhosts/newnaturalchemistry/src/django/django/utils/importlib.py", line 35, in import_module
__import__(name)
File "/var/www/vhosts/newnaturalchemistry/project/../project/urls.py", line 11, in <module>
admin.autodiscover()
File "/var/www/vhosts/newnaturalchemistry/src/django/django/contrib/admin/__init__.py", line 29, in autodiscover
import_module('%s.admin' % app)
File "/var/www/vhosts/newnaturalchemistry/src/django/django/utils/importlib.py", line 35, in import_module
__import__(name)
File "/var/www/vhosts/newnaturalchemistry/local/lib/python2.7/site-packages/feincms/module/page/admin.py", line 23, in <module>
"The page module requires a 'Page.register_templates()' call "
ImproperlyConfigured: The page module requires a 'Page.register_templates()' call somewhere ('Page.register_regions()' is not sufficient). If you're not using the default Page admin, maybe try FEINCMS_USE_PAGE_ADMIN=False to avoid this warning.