view gpp/templates/core/birthday_block.html @ 534:98f5facc0030

Clean up the birthday block. Get rid of space between name and comma. Get rid of bullets.
author Brian Neal <bgneal@gmail.com>
date Tue, 27 Dec 2011 01:15:27 +0000
parents 3c48a555298d
children
line wrap: on
line source
{% extends 'side_block.html' %}
{% load url from future %}
{% load bio_tags %}
{% 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 class="no-bullet">
   {% 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' profile.user.username %}" title="View profile for {{ 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 %}