## -*- coding: utf-8 -*- <%inherit file="root.mako"/> <%include file="/ejs_templates/templates.html"/>
${self.menu_bar_nav()}
${self.menu_bar_subnav()}
${next.main()}
### MAKO DEFS ### <%def name="menu_bar_subnav()"> <%def name="breadcrumbs(class_='breadcrumbs')">
${self.breadcrumbs_links()}
<%def name="admin_menu()"> <%def name="dt_info_panel(elements)">
%for dt, dd, title, show_items in elements:
${dt}:
%if callable(dd): ## allow lazy evaluation of elements ${dd()} %else: ${dd} %endif %if show_items: ${_('Show More')} %endif
%if show_items: %endif %endfor
<%def name="gravatar(email, size=16)"> <% if (size > 16): gravatar_class = 'gravatar gravatar-large' else: gravatar_class = 'gravatar' %> <%doc> TODO: johbo: For now we serve double size images to make it smooth for retina. This is how it worked until now. Should be replaced with a better solution at some point. <%def name="gravatar_with_user(contact, size=16, show_disabled=False)"> <% email = h.email_or_none(contact) %>
${self.gravatar(email, size)} ${h.link_to_user(contact)}
## admin menu used for people that have some admin resources <%def name="admin_menu_simple(repositories=None, repository_groups=None, user_groups=None)"> <%def name="repo_page_title(repo_instance)">
## SVN/HG/GIT icons %if h.is_hg(repo_instance): %endif %if h.is_git(repo_instance): %endif %if h.is_svn(repo_instance): %endif ## public/private %if repo_instance.private: %else: %endif ## repo name with group name ${h.breadcrumb_repo_link(repo_instance)}
## FORKED %if repo_instance.fork:

${_('Fork of')} ${h.link_to_if(c.has_origin_repo_read_perm,repo_instance.fork.repo_name, h.route_path('repo_summary', repo_name=repo_instance.fork.repo_name))}

%endif ## IMPORTED FROM REMOTE %if repo_instance.clone_uri:

${_('Clone from')} ${h.hide_credentials(repo_instance.clone_uri)}

%endif ## LOCKING STATUS %if repo_instance.locked[0]:

${_('Repository locked by %(user)s') % {'user': h.person_by_id(repo_instance.locked[0])}}

%elif repo_instance.enable_locking:

${_('Repository not locked. Pull repository to lock it.')}

%endif
<%def name="repo_menu(active=None)"> <% def is_active(selected): if selected == active: return "active" %>
% if c.rhodecode_db_repo.archived:
${_('This repository has been archived. It is now read-only.')}
% endif <%def name="repo_group_page_title(repo_group_instance)">
## Repository Group icon ## repo name with group name ${h.breadcrumb_repo_group_link(repo_group_instance)}
<%namespace name="dt" file="/data_table/_dt_elements.mako"/>
${dt.repo_group_desc(repo_group_instance.description_safe, repo_group_instance.personal, c.visual.stylify_metatags)}
<%def name="repo_group_menu(active=None)"> <% def is_active(selected): if selected == active: return "active" is_admin = h.HasPermissionAny('hg.admin')('can create repos index page') gr_name = c.repo_group.group_name if c.repo_group else None # create repositories with write permission on group is set to true create_on_write = h.HasPermissionAny('hg.create.write_on_repogroup.true')() group_admin = h.HasRepoGroupPermissionAny('group.admin')(gr_name, 'group admin index page') group_write = h.HasRepoGroupPermissionAny('group.write')(gr_name, 'can write into group index page') %>
<%def name="usermenu(active=False)"> ## USER MENU
  • % if c.rhodecode_user.username == h.DEFAULT_USER: ${gravatar(c.rhodecode_user.email, 20)} ${_('Sign in')} % else: ## logged in user ${gravatar(c.rhodecode_user.email, 20)} ${c.rhodecode_user.username}
    ## subnav with menu for logged in user ## unread counter
    ${c.unread_notifications}
    % endif
  • <%def name="menu_items(active=None)"> <% def is_active(selected): if selected == active: return "active" return "" %>