Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Apr 23rd, 2012  |  syntax: None  |  size: 0.36 KB  |  hits: 14  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Django template variable has wrong value / Javascript in HEAD not executed
  2. // inside the javascript
  3. var this_page = "{{ this_page }}";
  4.  
  5. // inside the HTML part
  6. {% ifnotequal this_page "home" %}
  7. ...Some HTML...
  8. {% endifnotequal %}
  9.        
  10. var this_page = "home";
  11.        
  12. var this_page = "about";
  13.        
  14. {% ifnotequal this_page "home" %}
  15. do some javascript
  16. {% endifnotequal %}