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 313k
  • Answers 313k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

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

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

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

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer You can use Enumerable#any? as well. [ :m1, :m2, :m3… May 13, 2026 at 10:48 pm
  • Editorial Team
    Editorial Team added an answer It's possible to do {% for ab in mylist %}… May 13, 2026 at 10:48 pm
  • Editorial Team
    Editorial Team added an answer I was learning how to do this myself, and this… May 13, 2026 at 10:48 pm

Related Questions

Is there anyway to verify if a Session has been disposed of by NHibernate?
I have a url similar to /abc/1.png i then rewrite it to /full/path/1.png. However
We'd like to build a custom type - or simply add custom columns to
I am basically producing a simple, watered down, iPhone specific sites on a sub-domain
I have a large table (between 74 and 88million rows) which is the middle

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.