You can use this template loader if you want to use template specifically from one app. Useful mainly in overriding admin templates - just make your own admin/change_form.html
and have it extend admin:admin/change_form.html
withou creating any symlinking or copying django admin's templates to alternate location.
Part of the ella project.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | from os.path import dirname, join, abspath, isdir
from django.db.models import get_app
from django.core.exceptions import ImproperlyConfigured
from django.template import TemplateDoesNotExist
from django.template.loaders.filesystem import load_template_source
def _get_template_vars(template_name):
app_name, template_name = template_name.split(":", 1)
try:
template_dir = abspath(join(dirname(get_app(app_name).__file__), 'templates'))
except ImproperlyConfigured:
raise TemplateDoesNotExist()
return template_name, template_dir
def load_template_from_app(template_name, template_dirs=None):
"""
Template loader that only serves templates from specific app's template directory.
Works for template_names in format app_label:some/template/name.html
"""
if ":" not in template_name:
raise TemplateDoesNotExist()
template_name, template_dir = _get_template_vars(template_name)
if not isdir(template_dir):
raise TemplateDoesNotExist()
return load_template_source(template_name, template_dirs=[template_dir])
load_template_from_app.is_usable = True
|
More like this
- Template tag - list punctuation for a list of items by shapiromatron 11 months, 1 week ago
- JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 11 months, 2 weeks ago
- Serializer factory with Django Rest Framework by julio 1 year, 6 months ago
- Image compression before saving the new model / work with JPG, PNG by Schleidens 1 year, 7 months ago
- Help text hyperlinks by sa2812 1 year, 7 months ago
Comments
Please login first before commenting.