Mercurial > public > bravenewsurf
view bns_website/templates/reviews/review_list.html @ 43:9936cae358d9
I removed some unused clutter from the news_list.html template. I moved the date to the title line, which looks a lot better I think. I made the space between articles 2em and added a border at the top of each article. I'm not sure I like it, but it's better I think.
author | Bob Mourlam <bob.mourlam@gmail.com> |
---|---|
date | Mon, 07 Nov 2011 21:22:12 -0600 |
parents | 37d9b6b1a097 |
children | 2598bc18b6fb |
line wrap: on
line source
{% extends 'base.html' %} {% load core_tags %} {% block title %}Reviews{% endblock %} {% block custom_css %} <link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/themes/redmond/jquery-ui.css"> {% endblock %} {% block custom_js %} <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script> <script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/jquery-ui.min.js"></script> {% endblock %} {% block content %} {% navbar 'reviews' %} <h1>Reviews</h1> <div class="reviews"> {% if object_list %} <ul class="review-list"> {% for review in object_list %} <li class="review-list-item"> <blockquote> <p>{{ review.review|safe }}</p> <small> {{ review.reviewer }} {% if review.review_url %} - <a href="{{ review.review_url }}"><em>{% if review.review_site %}{{ review.review_site }}{% else %}{{ review.review_url }}{% endif %}</em></a> {% else %}{% if review.review_site %} - <em>{{ review.review_site }}</em> {% endif %}{% endif %} </small> </blockquote> </li> {% endfor %} </ul> {% else %} Coming soon... {% endif %} {% endblock %}