Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2012
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. {% if attendee in agenda.meeting.attendees %}
  2. <img class="icon" src="/media/img/attending.png" alt="Attending">
  3. {% else %}
  4. <img class="icon" src="/media/img/not_attending.png" alt="Not Attending" onclick="changeStatus()">
  5. {% endif %}
  6.  
  7.  
  8. code code code and more code
  9. blah blah blah wohoooo
  10.  
  11.  
  12. scripts here blah blah blah
  13.  
  14. <script>
  15. function changeStatus()
  16. {
  17. $.post("{% url summit.schedule.views.attend_meeting agenda.meeting.summit.name, agenda.meeting.id %}", { participation: "ATTENDING" } , function(data){if data[success]=False: <img class="icon" src="/media/img/attending.png alt="Attending">});
  18. }
  19. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement