-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Problems with AppConfig #12
Comments
Just found out that this works fine with django-app-namespace-template-loader, and I'm good switching to that :) |
Thanks for the hint! The issue seems to be identical to Fantomas42/django-app-namespace-template-loader#10. |
You can see the fix in the diffset between 0.3 and 0.3.1 where it was fixed: Fantomas42/django-app-namespace-template-loader@0.3...v0.3.1 |
Do you want to try a PR? |
No, I switched to the other app -- remember Fantomas42/django-app-namespace-template-loader#15 ? ;) |
Just checking. Thanks for reporting, anyway. |
It seems that if an application is specified via AppConfig, it will not work:
For
django-wiki
, this produces errors likeTemplateDoesNotExist: "wiki:wiki/base.html"
. Other variations like specifying the app config{% extends "wiki.apps.WikiConfig:wiki/base.html" %}
aren't working neither.Specified as just the app, it works:
I kind of gather from the implementation that it's assumed that the entry of
INSTALLED_APPS
is importable models and not AppConfig class paths?https://github.com/bittner/django-apptemplates/blob/master/apptemplates/__init__.py#L18
The text was updated successfully, but these errors were encountered: