1
0
mirror of https://github.com/django/django.git synced 2024-12-29 12:36:08 +00:00
django/django/template/loaders/app_directories.py
2022-02-07 20:37:05 +01:00

14 lines
312 B
Python

"""
Wrapper for loading templates from "templates" directories in INSTALLED_APPS
packages.
"""
from django.template.utils import get_app_template_dirs
from .filesystem import Loader as FilesystemLoader
class Loader(FilesystemLoader):
def get_dirs(self):
return get_app_template_dirs("templates")