Indefero

Indefero Git Source Tree

Root/src/IDF/templates/idf/issues/base.html

1{extends "idf/base.html"}
2{block tabissues} class="active"{/block}
3{block subtabs}
4<div id="sub-tabs">
5<a {if $inOpenIssues}class="active" {/if}href="{url 'IDF_Views_Issue::index', array($project.shortname)}">{trans 'Open Issues'}</a>
6{if !$user.isAnonymous()} | <a {if $inCreate}class="active" {/if}href="{url 'IDF_Views_Issue::create', array($project.shortname)}">{trans 'New Issue'}</a> | <a {if $inMyIssues}class="active" {/if}href="{url 'IDF_Views_Issue::myIssues', array($project.shortname, 'submit')}">{trans 'My Issues'}</a>
7| <a {if $inWatchList}class="active" {/if}href="{url 'IDF_Views_Issue::watchList', array($project.shortname, 'open')}">{trans 'My watch list'}</a>{/if} |
8<form class="star" action="{url 'IDF_Views_Issue::search', array($project.shortname)}" method="get">
9<input accesskey="4" type="text" value="{$q}" name="q" size="20" />
10<input type="submit" name="s" value="{trans 'Search'}" />
11</form>
12{if $inIssue} |
13{aurl 'url', 'IDF_Views_Issue::view', array($project.shortname, $issue.id)}
14<a href="{$url}">{trans 'Back to the issue'}</a>
15{/if}
16{superblock}
17</div>
18{/block}
19

Archive Download this file