comparison gpp/templates/shoutbox/view_shout.html @ 310:daa2916f5b34

Fixing 145; New url tag behavior (forwards compatibility) in Django 1.3.
author Brian Neal <bgneal@gmail.com>
date Thu, 20 Jan 2011 04:03:48 +0000
parents f9a9b4014d5b
children 88b2b9cb8c1f
comparison
equal deleted inserted replaced
309:8a0bae48b6ca 310:daa2916f5b34
1 {% extends 'base.html' %} 1 {% extends 'base.html' %}
2 {% load url from future %}
2 {% load script_tags %} 3 {% load script_tags %}
3 {% block custom_css %} 4 {% block custom_css %}
4 <link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}css/shoutbox_app.css" /> 5 <link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}css/shoutbox_app.css" />
5 {% endblock %} 6 {% endblock %}
6 {% block custom_js %} 7 {% block custom_js %}
7 {% script_tags "jquery-jeditable" %} 8 {% script_tags "jquery-jeditable" %}
8 <script type="text/javascript" src="{{ MEDIA_URL }}js/shoutbox_app.js"></script> 9 <script type="text/javascript" src="{{ MEDIA_URL }}js/shoutbox_app.js"></script>
9 {% endblock %} 10 {% endblock %}
10 {% block title %}Shout #{{ shout.id }}{% endblock %} 11 {% block title %}Shout #{{ shout.id }}{% endblock %}
11 {% block content %} 12 {% block content %}
12 <div class="breadcrumbs"><a href="{% url shoutbox-history %}">Shoutbox History</a> &raquo; Shout #{{ shout.id }}</div> 13 <div class="breadcrumbs"><a href="{% url 'shoutbox-history' %}">Shoutbox History</a> &raquo; Shout #{{ shout.id }}</div>
13 <h2>Shout #{{ shout.id }}</h2> 14 <h2>Shout #{{ shout.id }}</h2>
14 <div class="shoutbox-history"> 15 <div class="shoutbox-history">
15 <table> 16 <table>
16 {% include "shoutbox/shout_detail.html" %} 17 {% include "shoutbox/shout_detail.html" %}
17 </table> 18 </table>