﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
29197	TemplateDoesNotExist: postgres/widgets/split_array.html	linluc	nobody	"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.
"	Bug	closed	contrib.postgres	2.0	Normal	invalid	postgres template SplitArrayWidget		Unreviewed	0	0	0	0	0	0
