comparison gpp/templates/weblinks/view_links.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 'weblinks/base.html' %} 1 {% extends 'weblinks/base.html' %}
2 {% load url from future %} 2 {% load url from future %}
3 {% block title %}Web Links: {{ category.title }}{% endblock %} 3 {% block title %}Web Links: {{ category.title }}{% endblock %}
4 {% block weblinks_css %} 4 {% block weblinks_css %}
5 <link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}css/tab-nav.css" /> 5 <link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}css/tab-nav.css" />
6 <link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}css/pagination.css" /> 6 <link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}css/pagination.css" />
7 {% endblock %} 7 {% endblock %}
8 {% block weblinks_js %} 8 {% block weblinks_js %}
9 <script type="text/javascript" src="{{ MEDIA_URL }}js/weblinks.js"></script> 9 <script type="text/javascript" src="{{ STATIC_URL }}js/weblinks.js"></script>
10 {% endblock %} 10 {% endblock %}
11 {% block weblinks_content %} 11 {% block weblinks_content %}
12 <h3>Category: {{ category.title }}</h3> 12 <h3>Category: {{ category.title }}</h3>
13 13
14 {% if page.object_list %} 14 {% if page.object_list %}