diff --git a/pylons_app/templates/summary.html b/pylons_app/templates/summary.html new file mode 100644 --- /dev/null +++ b/pylons_app/templates/summary.html @@ -0,0 +1,81 @@ +<%inherit file="base/base.html"/> + +<%def name="title()"> + ${_('Repository managment')} + +<%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))} + / + ${_('summary')} + +<%def name="page_nav()"> +
+ {sessionvars%hiddenformentry} + +
+ + + +<%def name="main()"> + + +
+
name
+
${c.repo_info.name}
+
description
+
${c.repo_info.description}
+
contact
+
${c.repo_info.contact}
+
last change
+
${c.repo_info.last_change|n,self.f.rfc822date}
+
+ +

Changes

+ + %for cnt,cs in enumerate(c.repo_changesets): + + + + + + + %endfor + + + +
${cs.date}${cs.author}${cs.message} + ${h.link_to(u'changset')} + | + ${h.link_to(u'files')} +
...
+ +

Tags

+ +{tags} + + + +
...
+ + + + {branches%branchentry} + + + +
...
+ + \ No newline at end of file