Artifact db0910ac526cd6cce3e2d394b7a416c7a136be7d:
- File applications/mobileblur/views/default/index.html — part of check-in [daef6c0f88] at 2011-11-22 06:01:25 on branch feature/pretty — Added colors to the intelligencs scores in the feed list (user: spiffy, size: 459) [annotate] [blame] [check-ins using]
{{extend 'layout.html'}} {{ for feed in feeds.itervalues(): }} {{ if threshold == -1 and feed["ng"] > 0: }} <span class='ng'>{{= feed["ng"] }}</span> {{ pass }} {{ if threshold <= 0 and feed["nt"] > 0: }} <span class='nt'>{{= feed["nt"] }}</span> {{ pass }} {{if feed["ps"] > 0: }}<span class='ps'>{{= feed["ps"] }}</span> {{ pass }} <a href="{{= URL(c="feeds", f="view", args=[feed["id"]]) }}">{{= feed["feed_title"] }}</a><br /> {{ pass }}