Mercurial > public > sg101
view gpp/templates/contests/contest_list.html @ 554:1bd184f3e87b
Updated requirements.txt after using my fork of django-elsewhere.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Thu, 26 Jan 2012 20:56:03 -0600 |
parents | 51fa1e0ca218 |
children | 0a8e6a9ccf53 |
line wrap: on
line source
{% extends 'base.html' %} {% block title %}Contests{% endblock %} {% block content %} <h2>Contests</h2> <p>From time to time, SurfGuitar101.com may hold drawings and contests. This page lists the current and past contests on the site.</p> {% if object_list %} <ul> {% for contest in contests %} <li><a href="{{ contest.get_absolute_url }}">{{ contest.title }}</a> - {{ contest.creation_date|date:"F d, Y" }} to {{ contest.end_date|date:"F d, Y" }} {% if contest.is_active %}<img src="{{ STATIC_URL }}icons/new.png" alt="New" />{% else %}<img src="{{ STATIC_URL }}icons/lock.png" alt="Old" />{% endif %} </li> {% endfor %} </ul> {% else %} <p>No contests at this time.</p> {% endif %} {% endblock %}