02e00054f6
Updated the French translations to use the French title conventions (No Uppercase For The First Letter of Each Word but only for the first word). Activated some of the menu links in the issue pages depending on the context.
14 lines
800 B
HTML
14 lines
800 B
HTML
{extends "base.html"}
|
|
{block tabissues} class="active"{/block}
|
|
{block subtabs}
|
|
<div id="sub-tabs">
|
|
<a {if $inOpenIssues}class="active" {/if}href="{url 'IDF_Views_Issue::index', array($project.shortname)}">{trans 'Open issues'}</a>
|
|
{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>{/if} |
|
|
<form class="star" action="{url 'IDF_Views_Issue::search', array($project.shortname)}" method="get">
|
|
<input accesskey="4" type="text" value="{$q}" name="q" size="20" />
|
|
<input type="submit" name="s" value="{trans 'Search'}" />
|
|
</form>
|
|
{superblock}
|
|
</div>
|
|
{/block}
|