#32644: TemplateDoesNotExist for templates in local apps
-------------------------------------------+------------------------
               Reporter:  Ron              |          Owner:  nobody
                   Type:  Bug              |         Status:  new
              Component:  Template system  |        Version:  3.2
               Severity:  Normal           |       Keywords:
           Triage Stage:  Unreviewed       |      Has patch:  0
    Needs documentation:  0                |    Needs tests:  0
Patch needs improvement:  0                |  Easy pickings:  0
                  UI/UX:  0                |
-------------------------------------------+------------------------
 Ok, I do hope this one is a valid bug ticket!

 Since the update from 3.1.8 to 3.2 I get a `TemplateDoesNotExist` error
 for alle templates **not living in the main template folder** but within
 my local apps.

 Project structure:

 Apps live under: myproject/apps/
 Main template dir: myproject/templates
 Templates for an app live under: myproject/apps/myapp/templates

 My config:
 {{{
 TEMPLATES = [
     {
         'BACKEND': 'django.template.backends.django.DjangoTemplates',
         'DIRS': ['templates'],
         'APP_DIRS': True,
         'OPTIONS': {
             'context_processors': [
                 'django.template.context_processors.debug',
                 'django.template.context_processors.request',
                 'django.contrib.auth.context_processors.auth',
                 'django.contrib.messages.context_processors.messages',
             ],
         },
     },
 ]
 }}}

 When I run my tests under 3.1.8, it works. When I update to 3.2 and run
 them, it throws the `TemplateDoesNotExist` exceptions.

 I'd be happy to assist in any way possible.

-- 
Ticket URL: <https://code.djangoproject.com/ticket/32644>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/049.13cee2ed2fd6c82e4210f9cd3dc38250%40djangoproject.com.

Reply via email to