%inherit file="/base/base.html"/>
<%def name="title()">
${c.repo_name} ${_('Summary')} - ${c.rhodecode_name}
%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))}
»
${_('summary')}
%def>
<%def name="page_nav()">
${self.menu('summary')}
%def>
<%def name="main()">
${_('Commit activity by day / author')}
%if c.no_data:
${c.no_data_msg}
%endif:
${h.link_to(_('Shortlog'),h.url('shortlog_home',repo_name=c.repo_name))}
<%include file='../shortlog/shortlog_data.html'/>
##%if c.repo_changesets:
## ${h.link_to(_('show more'),h.url('changelog_home',repo_name=c.repo_name))}
##%endif
${h.link_to(_('Tags'),h.url('tags_home',repo_name=c.repo_name))}
<%include file='../tags/tags_data.html'/>
%if c.repo_changesets:
${h.link_to(_('show more'),h.url('tags_home',repo_name=c.repo_name))}
%endif
${h.link_to(_('Branches'),h.url('branches_home',repo_name=c.repo_name))}
<%include file='../branches/branches_data.html'/>
%if c.repo_changesets:
${h.link_to(_('show more'),h.url('branches_home',repo_name=c.repo_name))}
%endif
%def>