Files
@ 39203995f2c4
Branch filter:
Location: kallithea/pylons_app/templates/branches/branches.html - annotation
39203995f2c4
645 B
text/html
made action logger more global, to be used in other places to log other actions.
cleaned unused import in simpleHG, fixed little logging in hooks
cleaned unused import in simpleHG, fixed little logging in hooks
558eb7c5028f 20dc7a5eb748 558eb7c5028f 20dc7a5eb748 558eb7c5028f 20dc7a5eb748 558eb7c5028f 558eb7c5028f 20dc7a5eb748 558eb7c5028f 20dc7a5eb748 558eb7c5028f 20dc7a5eb748 20dc7a5eb748 558eb7c5028f 20dc7a5eb748 558eb7c5028f 20dc7a5eb748 558eb7c5028f 20dc7a5eb748 558eb7c5028f 558eb7c5028f 558eb7c5028f 558eb7c5028f 558eb7c5028f 558eb7c5028f 558eb7c5028f 558eb7c5028f 558eb7c5028f 558eb7c5028f 558eb7c5028f | ## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
${_('Administration')}
</%def>
<%def name="breadcrumbs_links()">
${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>
</div>
</%def>
|