Mercurial > public > sg101
view gpp/templates/weblinks/search_results.html @ 6:b6263ac72052
Use DRY principle to manage third party javascript libraries. Created script_tags template tags to generate the correct link and script tags for 3rd party libraries. The settings.py file is the only place where the full path name is specified.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 11 Apr 2009 22:50:56 +0000 |
parents | dbd703f7d63a |
children | 884839ddbfde |
line wrap: on
line source
{% extends 'weblinks/base.html' %} {% block title %}Web Links: Search Results{% endblock %} {% block weblinks_css %} <link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}css/pagination.css" /> {% endblock %} {% block weblinks_content %} <h3>Search Results: {{ query }}</h3> {% include 'core/pagination_query.html' %} {% if page.object_list %} <dl> {% for link in page.object_list %} {% include 'weblinks/link.html' %} {% endfor %} </dl> {% include 'core/pagination_query.html' %} {% else %} <p>No results found.</p> {% endif %} {% endblock %}