Advertisement
Guest User

Untitled

a guest
Oct 25th, 2014
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.34 KB | None | 0 0
  1.  
  2. #CONTROLLER
  3. @app.route('/')
  4. def index():
  5.   template_one = render_template('/home/template1.html', random_string="hello world")
  6.   return render_template('/home/template2.html', template_one=template_one)
  7.  
  8. #VIEW template1.html
  9. <script>
  10. alert("{{random_string}}");
  11. </script>
  12.  
  13.  
  14. #VIEW template2.html
  15. <div>
  16. {{template_one}}
  17. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement