Mercurial > hg > ltpdarepo
changeset 229:32fda28194d6
Fix rendering issue in Webkit based browsers.
author | Daniele Nicolodi <daniele@grinta.net> |
---|---|
date | Thu, 24 Nov 2011 18:24:53 +0100 |
parents | 694acf75447f |
children | 5c5f6d93d9d4 |
files | src/ltpdarepo/templates/objs.html |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/ltpdarepo/templates/objs.html Thu Nov 24 17:31:32 2011 +0100 +++ b/src/ltpdarepo/templates/objs.html Thu Nov 24 18:24:53 2011 +0100 @@ -25,7 +25,7 @@ </thead> <tbody> {% for obj in objs %} - <tr class="data {{ loop.cycle('odd', 'even') }}"> + <tr class="{{ loop.cycle('odd', 'even') }}"> {% for field in fields %} {% if field in ('id', 'name') %} <td class="{{ field }}"><a href="{{ url_for('browse.obj', database=database.id, objid=obj.id) }}">{{ obj[field] }}</a></td>