Mercurial > public > sg101
view gpp/templates/news/index.html @ 226:405468b8e3b9
For #51; change verbose_name & verbose_name_plural so that the Haystack model search form has reasonable labels.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Thu, 10 Jun 2010 03:31:57 +0000 |
parents | 2baadae33f2e |
children | 1246a4f1ab4f |
line wrap: on
line source
{% extends 'news/base.html' %} {% block title %}News: {{ title }}{% endblock %} {% block news_css %} <link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}css/pagination.css" /> {% endblock %} {% block news_content %} <h3>{{ title }}</h3> {% if query %} {% include 'core/pagination_query.html' %} {% else %} {% include 'core/pagination.html' %} {% endif %} {% if page.object_list %} {% for story in page.object_list %} {% include 'news/story_summary.html' %} {% endfor %} <div style="clear:right;"></div> {% else %} {% if query %} <p>No results found.</p> {% else %} <p>No news at this time.</p> {% endif %} {% endif %} {% if query %} {% include 'core/pagination_query.html' %} {% else %} {% include 'core/pagination.html' %} {% endif %} {% endblock %}