bgneal@13: {% extends 'base.html' %} bgneal@310: {% load url from future %} bgneal@13: {% load script_tags %} bgneal@13: {% block custom_css %} bgneal@312: <link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}css/shoutbox_app.css" /> bgneal@13: {% endblock %} bgneal@13: {% block custom_js %} bgneal@13: {% script_tags "jquery-jeditable" %} bgneal@312: <script type="text/javascript" src="{{ STATIC_URL }}js/shoutbox_app.js"></script> bgneal@13: {% endblock %} bgneal@13: {% block title %}Shout #{{ shout.id }}{% endblock %} bgneal@13: {% block content %} bgneal@310: <div class="breadcrumbs"><a href="{% url 'shoutbox-history' %}">Shoutbox History</a> » 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 %}