diff options
author | Dusty Phillips <buchuki@gmail.com> | 2008-10-06 03:06:00 +0200 |
---|---|---|
committer | Dusty Phillips <buchuki@gmail.com> | 2008-10-06 03:06:00 +0200 |
commit | a00f85e1332ca973cec807693e383accd9cdc864 (patch) | |
tree | 6c99f0ccf8177a0c88f67c5689d837d85aeb633c /templates/news/list.html | |
parent | 06963130c85f8632b898a2d98e7931951c7735a4 (diff) | |
download | archweb-a00f85e1332ca973cec807693e383accd9cdc864.tar.gz archweb-a00f85e1332ca973cec807693e383accd9cdc864.tar.xz |
port news to django 1.0 using generic views
Diffstat (limited to 'templates/news/list.html')
-rw-r--r-- | templates/news/list.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/news/list.html b/templates/news/list.html index 8627766..0edaae1 100644 --- a/templates/news/list.html +++ b/templates/news/list.html @@ -9,7 +9,7 @@ {% endif %} <h2 class="title">News Updates</h2> <table class="results" width="100%"> - {% for item in news %} + {% for item in news_list %} <tr class="{% cycle pkgr2,pkgr1 %}"> <td>{{ item.postdate }}</td> <td><a href="{{ item.get_absolute_url }}">{{ item.title }}</a></td> |