view gpp/templates/news/index.html @ 204:b4305e18d3af

Resolve ticket #74. Add user badges. Some extra credit was done here: also refactored how pending news, links, and downloads are handled.
author Brian Neal <bgneal@gmail.com>
date Sat, 01 May 2010 21:53:59 +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 %}