view sg101/templates/weblinks/link_summary.html @ 1018:02ae9a4a846a

ManifestStaticFilesStorage: get rid of STATIC_URL in templates.
author Brian Neal <bgneal@gmail.com>
date Sun, 06 Dec 2015 21:49:39 -0600
parents ee87ea74d46b
children 176d1550bf25
line wrap: on
line source
{% extends 'weblinks/base.html' %}
{% load static from staticfiles %}
{% block title %}Web Links: {{ title }}{% endblock %}
{% block weblinks_css %}
<link rel="stylesheet" type="text/css" href="{% static "css/tab-nav.css" %}" />
<link rel="stylesheet" type="text/css" href="{% static "css/pagination.css" %}" />
{% endblock %}
{% block weblinks_js %}
<script type="text/javascript" src="{% static "js/weblinks.js" %}"></script>
{% endblock %}
{% block weblinks_content %}
<h3>{{ title }}</h3>
{% if page.object_list %}
   {% include 'core/pagination.html' %}
   <dl>
   {% for link in page.object_list %}
      {% include 'weblinks/link.html' %}
   {% endfor %}
   </dl>
   {% include 'core/pagination.html' %}
{% endif %}
{% endblock %}