comparison rhodecode/templates/branches/branches.html @ 1888:f91d3f9b7230 beta

White-space cleanup
author Marcin Kuzminski <marcin@python-works.com>
date Thu, 12 Jan 2012 06:32:40 +0200
parents eaf09acf6872
children f6cdfc730831 76d156bef5a2
comparison
equal deleted inserted replaced
1886:50e32940e464 1888:f91d3f9b7230
6 </%def> 6 </%def>
7 7
8 <%def name="breadcrumbs_links()"> 8 <%def name="breadcrumbs_links()">
9 <input class="q_filter_box" id="q_filter_branches" size="15" type="text" name="filter" value="${_('quick filter...')}"/> 9 <input class="q_filter_box" id="q_filter_branches" size="15" type="text" name="filter" value="${_('quick filter...')}"/>
10 ${h.link_to(u'Home',h.url('/'))} 10 ${h.link_to(u'Home',h.url('/'))}
11 &raquo; 11 &raquo;
12 ${h.link_to(c.repo_name,h.url('summary_home',repo_name=c.repo_name))} 12 ${h.link_to(c.repo_name,h.url('summary_home',repo_name=c.repo_name))}
13 &raquo; 13 &raquo;
14 ${_('branches')} 14 ${_('branches')}
15 </%def> 15 </%def>
16 16
17 <%def name="page_nav()"> 17 <%def name="page_nav()">
18 ${self.menu('branches')} 18 ${self.menu('branches')}
19 </%def> 19 </%def>
20 20
21 <%def name="main()"> 21 <%def name="main()">
22 <div class="box"> 22 <div class="box">
23 <!-- box / title --> 23 <!-- box / title -->
59 sortedBy:{key:"name",dir:"asc"}, 59 sortedBy:{key:"name",dir:"asc"},
60 MSG_SORTASC:"${_('Click to sort ascending')}", 60 MSG_SORTASC:"${_('Click to sort ascending')}",
61 MSG_SORTDESC:"${_('Click to sort descending')}", 61 MSG_SORTDESC:"${_('Click to sort descending')}",
62 MSG_EMPTY:"${_('No records found.')}", 62 MSG_EMPTY:"${_('No records found.')}",
63 MSG_ERROR:"${_('Data error.')}", 63 MSG_ERROR:"${_('Data error.')}",
64 MSG_LOADING:"${_('Loading...')}", 64 MSG_LOADING:"${_('Loading...')}",
65 } 65 }
66 ); 66 );
67 myDataTable.subscribe('postRenderEvent',function(oArgs) { 67 myDataTable.subscribe('postRenderEvent',function(oArgs) {
68 tooltip_activate(); 68 tooltip_activate();
69 var func = function(node){ 69 var func = function(node){
70 return node.parentNode.parentNode.parentNode.parentNode.parentNode; 70 return node.parentNode.parentNode.parentNode.parentNode.parentNode;
71 } 71 }
72 q_filter('q_filter_branches',YUQ('div.table tr td .logtags .branchtag a'),func); 72 q_filter('q_filter_branches',YUQ('div.table tr td .logtags .branchtag a'),func);
73 }); 73 });
74 74
75 </script> 75 </script>
76 76
77 </%def> 77 </%def>