view gpp/templates/core/birthday_block.html @ 444:a0847158cf72

Tweaking the birthday block; now display a list of people for each day and bold the current day.
author Brian Neal <bgneal@gmail.com>
date Sat, 04 Jun 2011 19:10:34 +0000
parents 6309814cd6f7
children 3c48a555298d
line wrap: on
line source
{% extends 'side_block.html' %}
{% load url from future %}
{% load humanize %}
{% 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 %}
{% block block_content %}
{% if birthdays %}
   <ul>
   {% for bday in birthdays %}
      <li>
         {% if bday.day == today.day %}<strong>{% endif %}
         {{ bday.day|ordinal }} &ndash;
         {% for profile in bday.profiles %}
         <a href="{% url 'bio-view_profile' username=profile.user.username %}">{{ profile.user.username }}</a>{% if not forloop.last %}, {% endif %}
         {% endfor %}
         {% if bday.day == today.day %}</strong>{% endif %}
      </li>
   {% endfor %}
   </ul>
{% else %}
   <p>No birthdays this month.</p>
{% endif %}
{% endblock %}