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?

link|improve this question

71% accept rate
Can be closed. I just copy image with needed name to needed path, and paste it's path to model. No need to use forms – Igor Aug 5 '11 at 10:42
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.