##// END OF EJS Templates
commit less models...
commit less models - models don't do any commits(with few exceptions) - all db transactions should be handled by higher level modules like controllers, celery tasks

File last commit:

r1654:71331537 beta
r1749:8ecc6b82 beta
Show More
branches.html
39 lines | 1.0 KiB | text/html | HtmlLexer
renamed project to rhodecode
r547 ## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
#38 updated RhodeCode titles
r619 ${c.repo_name} ${_('Branches')} - ${c.rhodecode_name}
renamed project to rhodecode
r547 </%def>
<%def name="breadcrumbs_links()">
added quick filters into branches and tags
r1654 <input class="q_filter_box" id="q_filter_branches" size="15" type="text" name="filter" value="${_('quick filter...')}"/>
renamed project to rhodecode
r547 ${h.link_to(u'Home',h.url('/'))}
&raquo;
${h.link_to(c.repo_name,h.url('summary_home',repo_name=c.repo_name))}
&raquo;
${_('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>
added quick filters into branches and tags
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>
renamed project to rhodecode
r547 </%def>