diff options
author | eliott <eliott@cactuswax.net> | 2007-12-30 17:44:27 -0500 |
---|---|---|
committer | eliott <eliott@cactuswax.net> | 2007-12-30 17:44:27 -0500 |
commit | 4fc36de2ae6537170541c199eabd8d1270a273c9 (patch) | |
tree | ec69119b50507328f9375860a66d4aeb105acab4 /templates/news/list.html | |
parent | f523a9d577aa88fea37ef7e4e2a9c484d14e5cde (diff) |
Added alternating row coloration to make it easier to relate left to right
side items.
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 e188e3c9..a6780f3f 100644 --- a/templates/news/list.html +++ b/templates/news/list.html @@ -10,7 +10,7 @@ <h2 class="title">News Updates</h2> <table class="results" width="100%"> {% for item in news %} - <tr> + <tr class="{% cycle pkgr2,pkgr1 %}"> <td>{{ item.postdate }}</td> <td><a href="{{ item.get_absolute_url }}">{{ item.title }}</a></td> <td> |