Mercurial > public > sg101
annotate gpp/templates/irc/irc_block.html @ 507:8631d32e6b16
Some users are still having problems with the pop-up login. I think they are actually getting 403s because of the CSRF protection. So I have modified the base template to always have a javascript variable called csrf_token available when they aren't logged in. The ajax_login.js script was then modified to send this value with the ajax post. Fingers crossed.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 04 Dec 2011 03:05:21 +0000 |
parents | 54cbdef18cf4 |
children |
rev | line source |
---|---|
gremmie@1 | 1 {% extends 'side_block.html' %} |
gremmie@1 | 2 {% block block_title %}IRC Status{% endblock %} |
gremmie@1 | 3 {% block block_content %} |
gremmie@1 | 4 {% if nicks %} |
gremmie@1 | 5 <ul> |
gremmie@1 | 6 {% for nick in nicks %} |
gremmie@1 | 7 <li>{{ nick.name }}</li> |
gremmie@1 | 8 {% endfor %} |
gremmie@1 | 9 </ul> |
bgneal@364 | 10 <p class="centered">Join them in the <a href="irc://surfguitar101.com/ShallowEnd,needpass">#ShallowEnd</a>!</p> |
gremmie@1 | 11 {% else %} |
bgneal@364 | 12 <p class="centered"><a href="irc://surfguitar101.com/ShallowEnd,needpass">#ShallowEnd</a> is empty.</p> |
gremmie@1 | 13 {% endif %} |
bgneal@373 | 14 <p class="centered"><a href="/irc/">Need help getting started?</a></p> |
gremmie@1 | 15 {% endblock %} |