Artifact de8ac0789fad4765a3bf97eb9730df80b48db4cc:
- File applications/mobileblur/views/default/index.html — part of check-in [1d6bdd2f2b] at 2011-11-22 13:36:43 on branch feature/pretty — Prettied up the feed list page (user: spiffy, size: 509) [annotate] [blame] [check-ins using] [more...]
{{extend 'layout.html'}} {{ for feed in feeds.itervalues(): }} <div class="feed"> {{ 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 /> </div> {{ pass }}