comparison gpp/templates/shoutbox/view_shout.html @ 312:88b2b9cb8c1f

Fixing #142; cut over to the django.contrib.staticfiles app.
author Brian Neal <bgneal@gmail.com>
date Thu, 27 Jan 2011 02:56:10 +0000
parents daa2916f5b34
children
comparison
equal deleted inserted replaced
311:b1c39788e511 312:88b2b9cb8c1f
1 {% extends 'base.html' %} 1 {% extends 'base.html' %}
2 {% load url from future %} 2 {% load url from future %}
3 {% load script_tags %} 3 {% load script_tags %}
4 {% block custom_css %} 4 {% block custom_css %}
5 <link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}css/shoutbox_app.css" /> 5 <link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}css/shoutbox_app.css" />
6 {% endblock %} 6 {% endblock %}
7 {% block custom_js %} 7 {% block custom_js %}
8 {% script_tags "jquery-jeditable" %} 8 {% script_tags "jquery-jeditable" %}
9 <script type="text/javascript" src="{{ MEDIA_URL }}js/shoutbox_app.js"></script> 9 <script type="text/javascript" src="{{ STATIC_URL }}js/shoutbox_app.js"></script>
10 {% endblock %} 10 {% endblock %}
11 {% block title %}Shout #{{ shout.id }}{% endblock %} 11 {% block title %}Shout #{{ shout.id }}{% endblock %}
12 {% block content %} 12 {% block content %}
13 <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>
14 <h2>Shout #{{ shout.id }}</h2> 14 <h2>Shout #{{ shout.id }}</h2>