0

So I have an html form built with Foundation that collects information from user that I must then store in database. I attempt to connect the form to a view as follows:

<form data-abide action = "{% url 'User:user_signup_save' %}" method="POST">

The view I am attempting to send this data to is

def user_signup_save(request):

But I keep getting this error

Reverse for 'user_signup_save' with arguments '()' and keyword arguments '{}' not found. 0 pattern(s) tried: []

Any suggestions on how to resolve this?

1
  • This isn't a question about forms, but about URLs. Do you have a urls.py? Do you have a URL named "user_signup_save" in it? Perhaps you should post that file. Commented Mar 23, 2015 at 21:14

1 Answer 1

1

You need to give name to your views via urls. You can check it out from named urls

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.