Is there any way to append enctype=multipart/form-data to form in view? Reason is that i massive import documents from xml file, which contains link to image. In view I have such code
post_data = request.POST.copy()
files_data = request.FILES.copy()
for fields in run_parser(filename, request):
category_data = {
'title': fields['pagetitle'],
'slug': fields['alias'],
'description': fields['content'],
'parent_id_import': fields['id'],
}
category_files_data = {
'category_image': fields['catimage'],
}
post_data.update(category_data)
files_data.update(category_files_data)
form = CategoryForm(post_data, files_data, instance=Category())
if form.is_valid():
c = form.save(commit=False)
# If document has parent
if fields['parentId']:
# Get parent, it's outer ID is parent_import_id from xml
cat_parent = Category.objects.get(parent_id_import=fields['parentId'])
# add parent
c.parent = cat_parent
# save
c.save()
Everything fine, except image upload. It doesn't upload, because no enctype declared. This function doesn't have template, it just run as it is, parsing xml file(with external module), and operating with received data in view. So, the question is:
Is there any way to declare enctype, if I dont have a template?