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 639505
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T20:51:01+00:00 2026-05-13T20:51:01+00:00

you can view full source code here dpaste.com/hold/167199 Error: delete() takes exactly 2 arguments

  • 0

you can view full source code here dpaste.com/hold/167199

Error:

delete() takes exactly 2 arguments (1 given)

Copied from linked code:

index.html
............................................
     <form method="POST" action="/customer/(?P<name>[a-z]*)/delete/">
     <div style="float: right; 
                 margin: 0px; padding: 05px; ">
     <label for="id_customer">Customer:</label>
     <select name="customer" id="id_customer">
     <option value="" selected="selected">---------</option>
     <option value="{{ customer.customer_name|escape }}"></option>
     </select>
     <input type="submit" value="delete">  
     </div>
     </form>
......................................
Urls.py

 (r'^customer/(?P<name>[a-z]*)/delete/', 'quote.excel.views.delete')

Views.py

def delete(request, name):
    if request.method == "POST": 
        Customer.objects.get(name=name).delete()

This is how, i am using it.First,select should display the values presented in db into drop down box but it is rendering dd box,values are empty.

In views,i get 2 params needed only 1 given and problemwith urls.py is 404.

  • 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-13T20:51:01+00:00Added an answer on May 13, 2026 at 8:51 pm

    You are mixing the usage of GET and POST requests. You have to do the following:

    Either use GET requests, then you have to change your template this way:

    <form method="GET" action="/customer/{{customer.customer_name}}/delete/">
       <input type="submit" value="delete">  
    </form>
    

    The name must be part of the URL, because you have set up your urls.py this way. I don’t recommend this way, as everybody can just type the URL customer/foo/delete into the address bar to delete customer foo.


    The other way is to use post. Therefore you have to change your URL pattern and the view:

    (r'^customer/delete/', 'quote.excel.views.delete')
    
    
    def delete(request):
    if request.method == "POST":
        name = request.POST.get('customer', False)
        if name:
            Customer.objects.get(name=name).delete()
    

    But as it seems that you can only delete one customer, there is no need to create a select input element as it only contains one value.

    Update:

    To make this for all customers, you have to get all of them in your view, e.g. in a variable customers and pass this to the template. In the template, you iterate over all of them:

    <form method="POST" action="/customer/delete/">
      <label for="id_customer">Customer:</label>
      <select name="customer" id="id_customer">
          <option value="" selected="selected">---------</option>
          {% for customer in customers %}
              <option value="{{ customer.customer_name|escape }}">{{ customer.customer_name|escape }}</option>
          {% endfor %} 
      </select>
      <input type="submit" value="delete">  
    </form>
    

    As for the part Django template nt displaying in drop down box I don’t know what you mean with it, maybe you can clarify what you want.

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

Sidebar

Ask A Question

Stats

  • Questions 371k
  • Answers 371k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer A Device Context is just a place that drawing occurs,… May 14, 2026 at 7:00 pm
  • Editorial Team
    Editorial Team added an answer Is that queue transactional? If so. I believe you have… May 14, 2026 at 7:00 pm
  • Editorial Team
    Editorial Team added an answer I will preface this by saying that sharepoint is a… May 14, 2026 at 7:00 pm

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.