annotate gpp/templates/weblinks/view_links.html @ 197:2baadae33f2e

Got autocomplete working for the member search. Updated django and ran into a bug where url tags with comma separated kwargs starting consuming tons of CPU throughput. The work-around is to cut over to using spaces between arguments. This is now allowed to be consistent with other tags. Did some query optimization for the news app.
author Brian Neal <bgneal@gmail.com>
date Sat, 10 Apr 2010 04:32:24 +0000
parents 952e05cb3d80
children 7e8d2dda99e3
rev   line source
gremmie@1 1 {% extends 'weblinks/base.html' %}
gremmie@1 2 {% block title %}Web Links: {{ category.title }}{% endblock %}
gremmie@1 3 {% block weblinks_css %}
gremmie@1 4 <link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}css/tab-nav.css" />
gremmie@1 5 <link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}css/pagination.css" />
gremmie@1 6 {% endblock %}
bgneal@165 7 {% block weblinks_js %}
bgneal@165 8 <script type="text/javascript" src="{{ MEDIA_URL }}js/weblinks.js"></script>
bgneal@165 9 {% endblock %}
gremmie@1 10 {% block weblinks_content %}
gremmie@1 11 <h3>Category: {{ category.title }}</h3>
gremmie@1 12
gremmie@1 13 {% if page.object_list %}
gremmie@1 14 <ul class="tab-nav">
bgneal@197 15 <li><a href="{% url weblinks-view_links category=category.id sort="title" page="1" %}"
gremmie@1 16 {% ifequal s "title" %}class="active" {% endifequal %}>Title</a></li>
bgneal@197 17 <li><a href="{% url weblinks-view_links category=category.id sort="date" page="1" %}"
gremmie@1 18 {% ifequal s "date" %}class="active"{% endifequal %}>Date</a></li>
bgneal@197 19 <li><a href="{% url weblinks-view_links category=category.id sort="hits" page="1" %}"
gremmie@1 20 {% ifequal s "hits" %}class="active"{% endifequal %}>Hits</a></li>
gremmie@1 21 </ul>
gremmie@1 22
gremmie@1 23 {% include 'core/pagination.html' %}
gremmie@1 24
gremmie@1 25 <dl>
gremmie@1 26 {% for link in page.object_list %}
gremmie@1 27 {% include 'weblinks/link.html' %}
gremmie@1 28 {% endfor %}
gremmie@1 29 </dl>
gremmie@1 30
gremmie@1 31 {% include 'core/pagination.html' %}
gremmie@1 32 {% endif %}
gremmie@1 33 {% endblock %}