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>
+<%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>
+<%def name="page_nav()">
+
+
+
+%def>
+<%def name="main()">
+
+ ${_('Mercurial Repository Overview')}
+
+ - 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}
+
+
+
+
+ %for cnt,cs in enumerate(c.repo_changesets):
+
+ | ${cs.date} |
+ ${cs.author} |
+ ${cs.message} |
+
+ ${h.link_to(u'changset')}
+ |
+ ${h.link_to(u'files')}
+ |
+
+ %endfor
+
+ | ... |
+
+
+
+
+
+
+ Branches
+
+ {branches%branchentry}
+
+ | ... |
+
+
+
+%def>
\ No newline at end of file