branches.html
39 lines
| 1.0 KiB
| text/html
|
HtmlLexer
r547 | ## -*- coding: utf-8 -*- | ||
<%inherit file="/base/base.html"/> | |||
<%def name="title()"> | |||
r619 | ${c.repo_name} ${_('Branches')} - ${c.rhodecode_name} | ||
r547 | </%def> | ||
<%def name="breadcrumbs_links()"> | |||
r1654 | <input class="q_filter_box" id="q_filter_branches" size="15" type="text" name="filter" value="${_('quick filter...')}"/> | ||
r547 | ${h.link_to(u'Home',h.url('/'))} | ||
» | |||
${h.link_to(c.repo_name,h.url('summary_home',repo_name=c.repo_name))} | |||
» | |||
${_('branches')} | |||
</%def> | |||
<%def name="page_nav()"> | |||
${self.menu('branches')} | |||
</%def> | |||
<%def name="main()"> | |||
<div class="box"> | |||
<!-- box / title --> | |||
<div class="title"> | |||
${self.breadcrumbs()} | |||
</div> | |||
<!-- end box / title --> | |||
<div class="table"> | |||
<%include file='branches_data.html'/> | |||
</div> | |||
r1654 | </div> | ||
<script type="text/javascript"> | |||
var nodes = YUQ('div.table tr td .logtags .branchtag a'); | |||
var target = 'q_filter_branches'; | |||
var func = function(node){ | |||
return node.parentNode.parentNode.parentNode.parentNode; | |||
} | |||
q_filter(target,nodes,func); | |||
</script> | |||
r547 | </%def> |