Files @ d303aacb3349
Branch filter:

Location: kallithea/pylons_app/templates/branches/branches.html - annotation

Marcin Kuzminski
repos crud controllers - change id into repo_name for compatability, added ajax repo perm user function variuos html fixes, permissions forms and managment fixes.
Added permission fetching for each request in AuthUser instance
<%inherit file="/base/base.html"/>
<%def name="title()">
    ${_('Branches')}
</%def>
<%def name="breadcrumbs()">
    ${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()">
    <h2 class="no-link no-border">${_('Branches')}</h2>
	<%include file='branches_data.html'/>
</%def>