##// END OF EJS Templates
Added extra validation in creating users....
Added extra validation in creating users. new style errors for users

File last commit:

r282:237470e6 default
r357:ebdd1a89 default
Show More
branches.html
17 lines | 457 B | text/html | HtmlLexer
Html changes and cleanups, made folders for html templates, implemented tags and branches pages
r127 <%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()">
removed search field from templates
r189 ${self.menu('branches')}
Html changes and cleanups, made folders for html templates, implemented tags and branches pages
r127 </%def>
<%def name="main()">
<h2 class="no-link no-border">${_('Branches')}</h2>
switched filters into webhelpers for easy of usage....
r282 <%include file='branches_data.html'/>
Html changes and cleanups, made folders for html templates, implemented tags and branches pages
r127 </%def>