bgneal@13: {% extends 'base.html' %}
bgneal@13: {% load script_tags %}
bgneal@13: {% block custom_css %}
bgneal@13: <link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}css/shoutbox_app.css" />
bgneal@13: {% endblock %}
bgneal@13: {% block custom_js %}
bgneal@13: {% script_tags "jquery-jeditable" %}
bgneal@13: <script type="text/javascript" src="{{ MEDIA_URL }}js/shoutbox_app.js"></script>
bgneal@13: {% endblock %}
bgneal@13: {% block title %}Shout #{{ shout.id }}{% endblock %}
bgneal@13: {% block content %}
bgneal@13: <div class="breadcrumbs"><a href="{% url shoutbox-history page=1 %}">Shoutbox History</a> &raquo; Shout #{{ shout.id }}</div>
bgneal@13: <h2>Shout #{{ shout.id }}</h2>
bgneal@13: <div class="shoutbox-history">
bgneal@13: <table>
bgneal@13: {% include "shoutbox/shout_detail.html" %}
bgneal@13: </table>
bgneal@13: </div>
bgneal@13: {% endblock %}