Pass variable to html frame -
i have django app having
views.py
//some code
render(request, 'showmain.html',{"info": info})
and showmain.html
<html> <frameset rows = "70%,*"> <frame src="showinfo.html"> </frameset> </html> i want pass data in info showinfo.html. how can done?
Comments
Post a Comment