Im trying to submit a form from a dialog window and show the response in the same dialog window. Right now im trying with a Django view that returns a form (with Valdiation Errors) as a html-string.
template = "register.html"
html = render_to_string(template, {'form': form})
return HttpResponse(html, content_type="text/html; charset=utf-8")
But i have some problems with the function in my dialog-modal. Im missing the part that replaces the content in the "modal/dialog" with the new html from the HttpResponse..
$('#registerform').submit(function(e){
e.preventDefault();
$.post('register', function(data){
//somthing is missing here..
});
return false;
});
Not sure about the formatting right now but you get the idea. If any expert could guide me in the right direction i would be a happy man! Thanks
This is an implementation with Django braces: https://github.com/brack3t/django-braces
views.py