Guest User

Untitled

a guest
Apr 22nd, 2018
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. diff --git streema/apps/landing/views.py streema/apps/landing/views.py
  2. index 7fddef0..6d9baa6 100644
  3. --- streema/apps/landing/views.py
  4. +++ streema/apps/landing/views.py
  5. @@ -12,10 +12,12 @@ from streema.apps.activityfeed.models import Activity
  6. from streema.apps.utils.fb import fb_reverse
  7. from streema.apps.radios.models import Radio
  8. from streema.apps.accounts.decorators import fb_require_login
  9. +from django.contrib.csrf.middleware import csrf_exempt
  10.  
  11.  
  12. LANDING_LISTENERS_COUNT = 5
  13.  
  14. +@csrf_exempt
  15. def main(req):
  16.  
  17.  
  18. diff --git streema/templates/landing/main.html streema/templates/landing/main.html
  19. index 2eab5eb..8b312e8 100644
  20. --- streema/templates/landing/main.html
  21. +++ streema/templates/landing/main.html
  22. @@ -58,7 +58,7 @@
  23. <h1 id="landingH1" class="landingTitle">Free Online Radio Stations - Discover New Music!</h1>
  24. <div id="searchBox" class="panelSearch">
  25. <form method="post" action="/">
  26. - {% csrf_token %}
  27. + {% csrf_token %}
  28. <input id="radioName" type="text" name="radio" value="What is your favorite radio station?" />
  29. <button id="buttonLetsDoIt" type="submit"></button>
  30. </form>
Add Comment
Please, Sign In to add comment