## -*- coding: utf-8 -*- <%inherit file="/base/base.html"/> <%block name="title"> %if c.repo_name: ${_('%s Search') % c.repo_name} %else: ${_('Search in All Repositories')} %endif <%def name="breadcrumbs_links()"> %if c.repo_name: ${_('Search')} %else: ${_('Search in All Repositories')} %endif %if c.cur_query: » ${c.cur_query} %endif <%block name="header_menu"> %if c.repo_name: ${self.menu('repositories')} %else: ${self.menu('search')} %endif <%def name="main()"> %if c.repo_name: ${self.repo_context_bar('options')} %endif
${self.breadcrumbs()}
%if c.repo_name: ${h.form(h.url('search_repo',repo_name=c.repo_name),method='get')} %else: ${h.form(h.url('search'),method='get')} %endif
${h.text('q',c.cur_query,class_='form-control')}
${h.select('type',c.cur_type,[('content',_('File contents')), ('commit',_('Commit messages')), ('path',_('File names')), ], class_='form-control')}
##
${c.runtime}
${h.end_form()}
%if c.cur_type == 'content': <%include file='search_content.html'/> %elif c.cur_type == 'path': <%include file='search_path.html'/> %elif c.cur_type == 'commit': <%include file='search_commit.html'/> %endif