How to call python variables in ajax success call?
I fed the HTML form inputs through ajax post call to python backend, and as part of ajax succcess call i need to call python variables to build the <tbody>
of the html table.
{{ login_id }} doesn't seem to be working in Ajax, but does in html code. Some direction on this is greatly appreciated
this is a snippet from the ajax success code,
html += "<\td>" + "{{ login_id }}" + "<\/td>\",
this results in undefined value.