You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In ckanext-scheming, the template group/about.html is located on templates/scheming/
The first line is "{% extends "group/about.html" %}"
And plugins.py contents " def about_template(self): return 'scheming/group/about.html' "
This structure prevents another extension to extends group/about.html,
with the adviced method, I mean. (i.e. a file "my-ext/templates/group/about.html" whose first line is "{% ckan_extends %}")
WIth changing the scheming-extension code, it is possible to let my-ext to work. (if you want we could create a pull request)
Is there another solution ?
(with or without modifying scheming-ext)
The text was updated successfully, but these errors were encountered:
In ckanext-scheming, the template group/about.html is located on templates/scheming/
The first line is "{% extends "group/about.html" %}"
And plugins.py contents " def about_template(self):
return 'scheming/group/about.html' "
This structure prevents another extension to extends group/about.html,
with the adviced method, I mean. (i.e. a file "my-ext/templates/group/about.html" whose first line is "{% ckan_extends %}")
WIth changing the scheming-extension code, it is possible to let my-ext to work. (if you want we could create a pull request)
Is there another solution ?
(with or without modifying scheming-ext)
The text was updated successfully, but these errors were encountered: