Mercurial > public > sg101
annotate gpp/templates/core/birthday_block.html @ 504:b5bd3509e6e6
Made some tweaks to the ajax login javascript.
Cleared the inputs on failure so someone won't repeatedly try a bad login.
Redirect on lockout so the page will refresh.
Set focus on the username box after failure for convenience.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 03 Dec 2011 16:25:15 +0000 |
parents | 3c48a555298d |
children | 98f5facc0030 |
rev | line source |
---|---|
bgneal@421 | 1 {% extends 'side_block.html' %} |
bgneal@421 | 2 {% load url from future %} |
bgneal@492 | 3 {% load bio_tags %} |
bgneal@421 | 4 {% load humanize %} |
bgneal@422 | 5 {% block block_title %}<img src="{{ STATIC_URL }}icons/cake.png" alt="Cake" class="middle" /> {{ today|date:"F" }} Birthdays <img src="{{ STATIC_URL }}icons/cake.png" alt="Cake" class="middle" /> {% endblock %} |
bgneal@421 | 6 {% block block_content %} |
bgneal@444 | 7 {% if birthdays %} |
bgneal@421 | 8 <ul> |
bgneal@444 | 9 {% for bday in birthdays %} |
bgneal@444 | 10 <li> |
bgneal@444 | 11 {% if bday.day == today.day %}<strong>{% endif %} |
bgneal@444 | 12 {{ bday.day|ordinal }} – |
bgneal@444 | 13 {% for profile in bday.profiles %} |
bgneal@492 | 14 {% profile_link profile.user.username %}{% if not forloop.last %}, {% endif %} |
bgneal@444 | 15 {% endfor %} |
bgneal@444 | 16 {% if bday.day == today.day %}</strong>{% endif %} |
bgneal@444 | 17 </li> |
bgneal@421 | 18 {% endfor %} |
bgneal@421 | 19 </ul> |
bgneal@421 | 20 {% else %} |
bgneal@421 | 21 <p>No birthdays this month.</p> |
bgneal@421 | 22 {% endif %} |
bgneal@421 | 23 {% endblock %} |