##// END OF EJS Templates
more test suites on login, fixed strange detached instance bug found during in tests....
more test suites on login, fixed strange detached instance bug found during in tests. on __repr__ function fixed timerproxy query formatting

File last commit:

r362:558eb7c5 rhodecode-0.0.0.8.0 default
r462:29854618 default
Show More
shortlog.html
32 lines | 657 B | text/html | HtmlLexer
Implemented owner settings, as separete posibility to edit repositry by non administrative owner of repository
r320 ## -*- coding: utf-8 -*-
Html changes and cleanups, made folders for html templates, implemented tags and branches pages
r127 <%inherit file="/base/base.html"/>
<%def name="title()">
version bump to 0.8...
r362 ${_('Shortlog')}
Html changes and cleanups, made folders for html templates, implemented tags and branches pages
r127 </%def>
version bump to 0.8...
r362
<%def name="breadcrumbs_links()">
Html changes and cleanups, made folders for html templates, implemented tags and branches pages
r127 ${h.link_to(u'Home',h.url('/'))}
version bump to 0.8...
r362 &raquo;
${h.link_to(c.repo_name,h.url('summary_home',repo_name=c.repo_name))}
&raquo;
Html changes and cleanups, made folders for html templates, implemented tags and branches pages
r127 ${_('shortlog')}
</%def>
version bump to 0.8...
r362
Html changes and cleanups, made folders for html templates, implemented tags and branches pages
r127 <%def name="page_nav()">
version bump to 0.8...
r362 ${self.menu('shortlog')}
Html changes and cleanups, made folders for html templates, implemented tags and branches pages
r127 </%def>
<%def name="main()">
version bump to 0.8...
r362 <div class="box">
<!-- box / title -->
<div class="title">
${self.breadcrumbs()}
</div>
<!-- end box / title -->
<div class="table">
<div id="shortlog_data">
${c.shortlog_data}
</div>
</div>
</div>
</%def>