Load template from specific app

 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

  1. Template loader to target a specific template by miracle2k 1 year, 10 months ago
  2. Dynamic Template Loader by jgeewax 4 years, 10 months ago
  3. Admin Apps Names Translation by Nad/ 3 years, 3 months ago
  4. Loading templates by app path by apkawa 1 year, 10 months ago
  5. Language aware template loader by rmt 4 years, 1 month ago

Comments

wojas (on February 5, 2012):

I put an updated version of this code on bitbucket: http://bitbucket.org/wojas/django-apptemplates

My version is compatible with newer Django releases, works with apps that do not have any models, and is installable as a Python package.

#

(Forgotten your password?)