Root/
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | {extends "idf/issues/base.html"} {block docclass}yui-t2{/block} {block body} {$issues.render} {if !$user.isAnonymous()} {aurl 'url', 'IDF_Views_Issue::create', array($project.shortname)} < p >< a href = "{$url}" >< img style = "vertical-align: text-bottom;" src = "{media '/idf/img/add.png'}" alt = "+" align = "bottom" /></ a > < a href = "{$url}" >{trans 'New Issue'}</ a ></ p >{/if} {/block} {block context} {aurl 'open_url', 'IDF_Views_Issue::searchStatus', array($project.shortname, 'open'), array('q' => $query)} {aurl 'closed_url', 'IDF_Views_Issue::searchStatus', array($project.shortname, 'closed'), array('q' => $query)} {if $tag != null} {aurl 'open_url', 'IDF_Views_Issue::searchLabel', array($project.shortname, $tag.id, 'open'), array('q' => $query)} {aurl 'closed_url', 'IDF_Views_Issue::searchLabel', array($project.shortname, $tag.id, 'closed'), array('q' => $query)} {/if} {blocktrans} < p >< strong >Found open issues:</ strong > < a href = "{$open_url}" >{$open}</ a ></ p > < p >< strong >Found closed issues:</ strong > < a href = "{$closed_url}" >{$closed}</ a ></ p >{/blocktrans} {if $tag != null} {blocktrans}< p >< strong >Label:</ strong > < a href = "{$open_url}" class = "label" >< strong >{$tag.class}:</ strong >{$tag.name}</ a ></ p >{/blocktrans} {else} {* yes, this is duplicated from tags-cloud.html, but the code there cannot be easily overridden *} < dl class = "tagscloud smaller" >{foreach $all_tags as $class => $labels} < dt class = "label" >{$class}</ dt > {foreach $labels as $idx => $label} {aurl 'url', 'IDF_Views_Issue::searchLabel', array($project.shortname, $label.id, $status), array('q'=> $query)} < dd >< a href = "{$url}" class = "label" >{$label.name}{if $idx != count($labels) - 1},{/if}</ a ></ dd > {/foreach}{/foreach}</ dl > {/if} {/block} |