<%inherit file="/base/base.html"/> <%def name="title()"> ${c.repo_name} ${_('Summary')} - ${c.rhodecode_name} <%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 name="page_nav()"> ${self.menu('summary')} <%def name="main()">
${self.breadcrumbs()}
%if c.repo_info.dbrepo.repo_type =='hg': ${_('Mercurial repository')} %endif %if c.repo_info.dbrepo.repo_type =='git': ${_('Git repository')} %endif %if c.repo_info.dbrepo.private: ${_('private repository')} %else: ${_('public repository')} %endif ${c.repo_info.name} %if c.rhodecode_user.username != 'default': %if c.following: %else: %endif %endif:
%if c.repo_info.dbrepo.fork: ${_('public')} ${_('Fork of')} ${c.repo_info.dbrepo.fork.repo_name} %endif
${c.repo_info.dbrepo.description}
gravatar
${_('Username')}: ${c.repo_info.dbrepo.user.username}
${_('Name')}: ${c.repo_info.dbrepo.user.name} ${c.repo_info.dbrepo.user.lastname}
${_('Email')}: ${c.repo_info.dbrepo.user.email}
${h.age(c.repo_info.last_change)} - ${c.repo_info.last_change} ${_('by')} ${h.get_changeset_safe(c.repo_info,'tip').author}
%if len(c.repo_info.revisions) == 0: ${_('There are no downloads yet')} %elif c.enable_downloads is False: ${_('Downloads are disabled for this repository')} %if h.HasPermissionAll('hg.admin')('enable stats on from summary'): [${h.link_to(_('enable'),h.url('edit_repo',repo_name=c.repo_name))}] %endif %else: ${h.select('download_options',c.repo_info.get_changeset().raw_id,c.download_options)} %for cnt,archive in enumerate(c.repo_info._get_archives()): %if cnt >=1: | %endif ${h.link_to(archive['type'], h.url('files_archive_home',repo_name=c.repo_info.name, fname='tip'+archive['extension']),class_="archive_icon")} %endfor %endif
${h.link_to(_('RSS'),h.url('rss_feed_home',repo_name=c.repo_info.name),class_='rss_icon')} ${h.link_to(_('Atom'),h.url('atom_feed_home',repo_name=c.repo_info.name),class_='atom_icon')}
${_('Commit activity by day / author')}
%if c.no_data:
${c.no_data_msg} %if h.HasPermissionAll('hg.admin')('enable stats on from summary'): [${h.link_to(_('enable'),h.url('edit_repo',repo_name=c.repo_name))}] %endif
%endif:
<%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
<%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
<%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