## -*- coding: utf-8 -*- <%inherit file="/base/base.html"/> <%def name="title()"> %if c.repo_name: ${_('Search repository')} ${c.repo_name} - ${c.rhodecode_name} %else: ${_('Search in all repositories')} %endif <%def name="breadcrumbs_links()"> %if c.repo_name: ${h.link_to(_(u'Home'),h.url('/'))} » ${h.repo_link(c.rhodecode_db_repo.groups_and_repo)} » ${_('search')} %else: ${_('search in all repositories')} %endif %if c.cur_query: » ${c.cur_query} %endif <%def name="page_nav()"> %if c.repo_name: ${self.menu('options')} %else: ${self.menu('search')} %endif <%def name="main()">
${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_="small")}
${c.runtime}
${h.select('type',c.cur_type,[('content',_('File contents')), ('commit',_('Commit messages')), ('path',_('File names')), ##('repository',_('Repository names')), ])}
${h.end_form()}