#29197: TemplateDoesNotExist: postgres/widgets/split_array.html
-------------------------------------+-------------------------------------
               Reporter:  linluc     |          Owner:  nobody
                   Type:             |         Status:  new
  Uncategorized                      |
              Component:             |        Version:  2.0
  Uncategorized                      |       Keywords:  postgres template
               Severity:  Normal     |  SplitArrayWidget
           Triage Stage:             |      Has patch:  0
  Unreviewed                         |
    Needs documentation:  0          |    Needs tests:  0
Patch needs improvement:  0          |  Easy pickings:  0
                  UI/UX:  0          |
-------------------------------------+-------------------------------------
 In my model I use:


 {{{
 user_choices = ArrayField(models.BooleanField(), default=[], size=5)
 }}}

 then  on the form, in the widgets section (first import: from
 django.contrib.postgres.forms import SplitArrayWidget):

 {{{
 'user_choices' : SplitArrayWidget(forms.CheckboxInput(),5)
 }}}

 The above combination throws:

 Django Version:         2.0.1
 Exception Type:         TemplateDoesNotExist
 Exception Value:         postgres/widgets/split_array.html

 The issue seems easy to fix, by either fixing the path in "/lib/python3.4
 /site-packages/django/contrib/postgres/forms/array.py", which currently
 reads:


 {{{
 template_name = 'postgres/widgets/split_array.html'
 }}}

 or by moving the postgres template directory, which is located one level
 above.

-- 
Ticket URL: <https://code.djangoproject.com/ticket/29197>
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 [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/049.d2f541debe600eba8b1d797046637ed2%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to