Mercurial > public > bravenewsurf
view bns_website/templates/reviews/review_list.html @ 19:ef4155f8c234
For issue #5, add an untested (!) WSGI script. I'll test & refine this later when the site gets deployed.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Mon, 31 Oct 2011 20:46:03 -0500 |
parents | 71f2beb03789 |
children | 20dc7be59c85 ced908af601a |
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> <ul> {% for review in object_list %} <li> <cite>{{ review.review }}</cite> <br/><br/>- {{ review.reviewer }} - <a href="{{ review.review_url }}">{{ review.review_url }}</a> </li> {% endfor %} </ul> {% endblock %}