Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 331075
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T09:44:27+00:00 2026-05-12T09:44:27+00:00

I have a Model Formset that should take files sent via POST and add

  • 0

I have a Model Formset that should take files sent via POST and add them to the database.

However, the form includes the IDs of files already in the database, which leads to information being overwritten. For example, the HTML output for the form looks like this:

<label for="id_files-0-theFile">File:</label> 
    <input type="file" name="files-0-theFile" id="id_files-0-theFile" />
    <input type="hidden" name="files-0-id" value="1" id="id_files-0-id" />
.... and so on, for each entry form 0 .. 10

That third line — the files-0-id — is what I believe leads to the overwriting, but I don’t know how to fix this. I want the system to create new File objects for each submission, not use existing IDs.

My template prints the form information like so:

    <form action=... >
    {{ fileform.management_form }} 

    {% for form in fileform.forms %}
        {{ form.as_p }}
    {% endfor %}
    </form>

And the relevant parts of the model, form, and view are:

class File(models.Model):
    theFile = models.FileField("File", upload_to='files/%Y/%m/%d')
    entry = models.ForeignKey(Entry)
    size = models.CharField(blank=True, max_length=100)
    name = models.CharField(blank=True, max_length=150)

class FileForm(forms.ModelForm):
    class Meta:
        model = File
        exclude = ('entry', 'size')

def add(request):

FileFormSetFactory = modelformset_factory(File, form=FileForm, extra=8,
                                    exclude=file_forms_excludes,)
file_formset = FileFormSetFactory(prefix='files')

if request.method == 'POST':

    file_formset = FileFormSetFactory(request.POST, request.FILES, 
                                      prefix='files')

    if file_formset.is_valid():

        for f in file_formset.save(commit=False):                
            f.name = f.theFile.name.split("/")[-1]
            f.size = convert_bytes(f.theFile.size)
            f.entry = entry #primary key to another object, removed for clarity



            f.save()

        ...

        return HttpResponseRedirect('/doc/' + str(entry.id)) 

else:
    context = {}
    context['fileform'] = file_formset
    context['entryform'] = entry_form
    context['entities'] = entities()
    return render_to_response('add.html', context)
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T09:44:27+00:00Added an answer on May 12, 2026 at 9:44 am

    The answer is in the docs:

    By default, when you create a formset
    from a model, the formset will use a
    queryset that includes all objects in
    the model (e.g.,
    Author.objects.all()). You can
    override this behavior by using the
    queryset argument

    Just use ObjectName.objects.none()

    Odd default behavior, but there you go.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have created a formset from a model that has an ImageField inside it.
I have a form and a formset on my template. The problem is that
I have a form based on a model. I create a modelformset and need
I have model Foo which has field bar. The bar field should be unique,
I have model Article it has field title with some text that may contain
I have a ManyToManyField that I want to present in a form, as a
I have an inline formset for a model, which has a unique_together constraint. And
I have problem on accessing the form data from a formset. I attached the
Say I have django model that looks something like this: class Order(models.Model): number =
My goal is to have a formset that lists 5 versions of the same

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.