I am using Pyramid for my backend, and with my frontend I am using Jinja2 templates, with AngularJS.
The forms I use within pyramid all send data to the request, a standard html form would look like:
<form class="form-horizontal" method="post" accept-charset="utf-8" enctype="multipart/form-data">
<input type="submit" class="btn-u" name="form.submitted" value="CreateW"/>
Now I have added angularJS validation, the standard form does not submit data to request.params, or even perform a submit.
I tried using an angular button:
<button type="submit" class="btn-u" name="form.submitted">Create</button>
But that did not work either, how can I modify this angular form to post data to pyramids request.
Thanks