view bns_website/templates/reviews/review_list.html @ 29:ced908af601a

Adding support for the TinyMCE javascript editor in the admin for news and reviews apps.
author Brian Neal <bgneal@gmail.com>
date Fri, 04 Nov 2011 19:26:48 -0500
parents 71f2beb03789
children 4eaaf3809385
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|safe }}</cite>
		<br/><br/>- {{ review.reviewer }} - <a href="{{ review.review_url }}">{{ review.review_url }}</a>
	</li>
{% endfor %}
</ul>

{% endblock %}