srchub-old

srchub-old Mercurial Source Tree


Root/indefero/src/IDF/templates/idf/main-menu.html

<a href="#title" accesskey="2"></a>
<ul id="main-menu">
{if !$user.isAnonymous()}
{aurl 'url', 'idf_dashboard'}
<li>{blocktrans}Welcome, <strong><a class="userw" href="{$url}">{$user}</a></strong>.{/blocktrans}
    <a href="{url 'IDF_Views::logout'}">{trans 'Sign Out'}</a></li>
    <li><a href="{url 'IDF_Views_User::requestproject'}">Request Project</a></li>
    {else}
<a href="{url 'IDF_Views::login'}">{trans 'Sign in or create your account'}</a></li>
{/if}{if $customForgePageEnabled}
<li><a href="{url 'IDF_Views::index'}">{trans 'Home'}</a></li>
{/if}<li id="project-list"><a href="{url 'IDF_Views::listProjects'}">{trans 'Project List'} ▾</a>
{if $allProjects.count() != 0}
<ul>{foreach $allProjects as $p}
<li><a href="{url 'IDF_Views_Project::home', array($p.shortname)}"><img class="logo" src="{url 'IDF_Views_Project::logo', array($p.shortname)}" alt="{trans 'Project logo'}" />{if $p.private}<img class="lock" src="{media '/idf/img/lock.png'}" alt="{trans 'Private project'}" />{/if}{$p}</a></li>
{/foreach}</ul>
{/if}</li>{if $isAdmin}<li><a href="{url 'IDF_Views_Admin::forge'}">{trans 'Forge Management'}</a></li>{/if}<li>
<a href="{url 'IDF_Views::faq'}" title="{trans 'Help and accessibility features'}">{trans 'Help'}</a></li>
</ul>

{if $allProjects.count() != 0}
<script type="text/javascript" charset="utf-8">
{literal}
$(document).ready(function() {
  $('#project-list').bind('mouseenter', function(ev) {
    $(this).find('ul').show();
  }).bind('mouseleave', function(ev) {
    $(this).find('ul').hide();
  });
});
{/literal}
</script>
{/if}

Source at commit 0d35b479f0df created 12 years 10 days ago.
By "Nathan Adams ", Changing source preview to use new syntax highlighter

Archive Download this file

Branches

Tags

Page rendered in 1.38891s using 11 queries.