Root/
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | {extends "idf/base.html"} {block tabwiki} class="active"{/block} {block subtabs} < div id = "sub-tabs" > < a {if $inPageList} class = "active" {/if} href = "{url 'IDF_Views_Wiki::listPages', array($project.shortname)}" >{trans 'List Pages'}</ a > {if !$user.isAnonymous()} | < a {if $inResourceList} class = "active" {/if} href = "{url 'IDF_Views_Wiki::listResources', array($project.shortname)}" >{trans 'List Resources'}</ a > | < a {if $inCreatePage} class = "active" {/if} href = "{url 'IDF_Views_Wiki::createPage', array($project.shortname)}" >{trans 'New Page'}</ a > | < a {if $inCreateResource} class = "active" {/if} href = "{url 'IDF_Views_Wiki::createResource', array($project.shortname)}" >{trans 'New Resource'}</ a > {if $inPageView} | < a href = "{url 'IDF_Views_Wiki::updatePage', array($project.shortname, $page.title)}" >{trans 'Update This Page'}</ a > {/if} {if $inResourceView} | < a href = "{url 'IDF_Views_Wiki::updateResource', array($project.shortname, $resource.title)}" >{trans 'Update This Resource'}</ a > {/if} {/if} | < form class = "star" action = "{url 'IDF_Views_Wiki::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} |