Mercurial > public > sg101
annotate gpp/templates/news/archive_index.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 | dbd703f7d63a |
children | 1246a4f1ab4f |
rev | line source |
---|---|
gremmie@1 | 1 {% extends 'news/base.html' %} |
gremmie@1 | 2 {% block title %}News Archive{% endblock %} |
gremmie@1 | 3 {% block archive-class %}class="active"{% endblock %} |
gremmie@1 | 4 {% block news_content %} |
gremmie@1 | 5 <h3>News Archive</h3> |
gremmie@1 | 6 <p> |
gremmie@1 | 7 This is our news archive. Click on a link to view the list of stories we published for that month. |
gremmie@1 | 8 </p> |
gremmie@1 | 9 |
gremmie@1 | 10 {% if dates %} |
gremmie@1 | 11 <ul> |
gremmie@1 | 12 {% for date in dates %} |
bgneal@197 | 13 <li><a href="{% url news-archive_page year=date.year month=date.month page=1 %}"> |
gremmie@1 | 14 {{ date|date:"F, Y" }}</a></li> |
gremmie@1 | 15 {% endfor %} |
gremmie@1 | 16 </ul> |
gremmie@1 | 17 {% else %} |
gremmie@1 | 18 <p>No archives at this time.</p> |
gremmie@1 | 19 {% endif %} |
gremmie@1 | 20 {% endblock %} |