I am newbie to django and using it as back end for an application that creates users. In front end the code for posting the user name is :
var xobj = new XM
Your front and back end are on different ports which means your ajax requests are subject to cross origin security.
You need to set up the back end to accept requests from different origins (or just different port numbers).
Try reading up on CORS and more specifically looking at django cors headers