diff --git a/pylons_app/templates/summary/summary.html b/pylons_app/templates/summary/summary.html --- a/pylons_app/templates/summary/summary.html +++ b/pylons_app/templates/summary/summary.html @@ -1,71 +1,270 @@ <%inherit file="/base/base.html"/> + <%def name="title()"> - ${_('Repository managment')} + ${_('Mercurial Repository Overview')} -<%def name="breadcrumbs()"> + + + +<%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="js()"> - +<%def name="main()"> - +
+ +
+ ${self.breadcrumbs()} +
+ +
+
+ +
+
+ +
+
+ ${c.repo_info.name} +
+
+ + +
+
+ +
+
+ ${c.repo_info.description} +
+
+ + +
+
+ +
+
+ ${c.repo_info.contact} +
+
+ +
+
+ +
+
+ ${h.age(c.repo_info.last_change)} - ${h.rfc822date(c.repo_info.last_change)} +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ %for cnt,archive in enumerate(c.repo_info._get_archives()): + %if cnt >=1: + | + %endif + ${h.link_to(c.repo_info.name+'.'+archive['type'], + h.url('files_archive_home',repo_name=c.repo_info.name, + revision='tip',fileformat=archive['extension']),class_="archive_icon")} + %endfor +
+
+ +
+
+ +
+
+ ${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')} +
+
+
+
+
+ +
+ +
+
${_('Last month commit activity')}
+
+ +
+
+
+
+
+ + +
+
+
+ + +
+
+ +
+
+ +
+
+ <%include file='../shortlog/shortlog_data.html'/> +
+
+
+
+ +
+
+ <%include file='../tags/tags_data.html'/> +
+
+
+
+ +
+
+ <%include file='../branches/branches_data.html'/> +
+
\ No newline at end of file