view gpp/templates/shoutbox/view.html @ 11:cc8eb028def1

Update jquery-ui and theme version that is hosted on google. In preparation for having jquery on every page (?), make it so that the autocomplete plug is using the 'global' jquery, and not the one that came with it. It seems to work okay with jquery 1.3.2.
author Brian Neal <bgneal@gmail.com>
date Tue, 14 Apr 2009 02:35:35 +0000
parents b6263ac72052
children f408971657b9
line wrap: on
line source
{% extends 'base.html' %}
{% load avatar_tags %}
{% load smiley_tags %}
{% load script_tags %}
{% block custom_css %}
<link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}css/shoutbox_app.css" />
<link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}css/pagination.css" />
{% endblock %}
{% block custom_js %}
{% script_tags "jquery" %}
{% script_tags "jquery-jeditable" %}
<script type="text/javascript" src="{{ MEDIA_URL }}js/shoutbox_app.js"></script>
{% endblock %}
{% block title %}Shout History{% endblock %}
{% block content %}
<h2>Shout History</h2>
{% if page.object_list %}
{% include 'core/pagination.html' %}

<div class="shoutbox-history">
<table>
{% for shout in page.object_list %}
    <tr>
    <th>
    <a href="{% url bio-view_profile username=shout.user.username %}">{% avatar shout.user %}</a>
    <a href="{% url bio-view_profile username=shout.user.username %}">{{ shout.user.username }}</a>
    </th>
    <td>
<div {% ifequal user shout.user %}class="edit" id="shout-{{ shout.id }}"{% endifequal %}>{{ shout.shout|smilify|urlize }}</div>
    </div>
    <br />
    <span class="date">{{ shout.shout_date|date:"D M d Y H:i:s" }}</span>
    {% ifequal user shout.user %}
        | <a href="#" class="shout-del" id="shout-del-{{ shout.id }}">Delete</a>
    {% endifequal %}
    </td>
    </tr>
{% endfor %}
</table>
</div>

{% include 'core/pagination.html' %}
{% else %}
<p>No shouts at this time.</p>
{% endif %}
{% endblock %}