Hello, i’ve got an app organised like this
root/content/templates/product/
root/app
root/module
in module i’ve got a view edit_product who import formProduct and render form_product.html
in my form.py I create a class ProductForm like this
class CustomImageFileUploadInput(forms.widgets.ClearableFileInput):
template_name = "product/admin/product/custom_clearable_file_input.html"
class ProductForm(forms.ModelForm):
def __init__(self, *args, **kwargs):
self.fields['image'] = forms.ImageField(
label=_("Image du produit"),
required=False,
widget=CustomImageFileUploadInput(attrs={'class': 'form-control','style': 'width: auto; display: inline-block;',}),
validators=[validate_image_extension]
)
I’ve got in product/admin/product/ a custom html template : custom_clearable_file_input.html
In settings I’ve got following data :
BASE_DIR = Path(__file__).resolve().parent.parent
CONTENT_DIR = os.path.join(BASE_DIR, 'content')
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [os.path.join(CONTENT_DIR, 'templates')],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
'django.template.context_processors.i18n',
'django.template.context_processors.media',
'django.template.context_processors.static',
'django.template.context_processors.tz',
'django.template.context_processors.debug',
'django.template.context_processors.request',
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
'content.utils.context_processors.load_variable_context',
'content.utils.context_processors.user_admin',
],
},
},
]
The issue I don’t understand is when I try to render in shell with get_template, it’s working well
When I try to create a test view just to render_to_html this template it’s working well … the only issue is when I load into a page this form It can’t load template
I load this template in ajax with this command
$.ajax({
url: url,
type: "GET",
success: function (data) {
$("#modal-body-new-product").html(data); // Injecte le formulaire
},
error: function () {
$("#modal-body-new-product").html("<p>{% trans 'Erreur de chargement.' %}</p>");
}
});
where url is the url path where views is loaded to render form.html
Don’t know if you understand well but template is loading well everywhere except in form … I just need to overihide default template for clearable_file_input
Thanks for your help