I am using Python3.5 Django 1.11 as a backend for an apache server in red hat. Currently it has been put into production and works without problems.
We are now seeing the need for future use of FORMS in the pages but with the priority of being interactive.
EJ:
Entering an address 127.0.0.1:8000/app/page/
(testing now in runserver) generates a page with select
and a button in div
, and another div
with a tab-nav
that has a html
generated by another application and also, in the same div
, a table with style provided by datatable of Bootstrap.
What you want is that when you select one of the options of select
and click on the button, the page will not be completely updated, but the tab-nav
and the datatable will be updated according to the functions in the view of Django (work on backend).
Where can I find this information or tutorial to do this? Or is it not possible with the Django forms and is there a better way to interact with Django using jQuery and Ajax?