diff --git a/pylons_app/templates/changeset/changeset.html b/pylons_app/templates/changeset/changeset.html
--- a/pylons_app/templates/changeset/changeset.html
+++ b/pylons_app/templates/changeset/changeset.html
@@ -1,7 +1,7 @@
<%inherit file="/base/base.html"/>
<%def name="title()">
- ${_('Changeset')}
+ ${_('Changeset')} - r${c.changeset.revision}:${c.changeset.short_id} - ${c.repo_name}
%def>
<%def name="breadcrumbs_links()">
@@ -34,42 +34,56 @@
-
-
-
-
-
${_('Date')}: ${c.changeset.date}
-
${_('Author')}: ${c.changeset.author}
-
${h.wrap_paragraphs(c.changeset.message)}
-
-
- %if len(c.changeset.parents)>1:
-
- ${_('merge')}
-

-
- %endif
- %for p_cs in reversed(c.changeset.parents):
-
${_('Parent')} ${p_cs.revision}: ${h.link_to(p_cs.short_id,
- h.url('changeset_home',repo_name=c.repo_name,revision=p_cs.short_id),title=p_cs.message)}
-
- %endfor
-
-
- ${h.link_to(c.changeset.branch,h.url('files_home',repo_name=c.repo_name,revision=c.changeset.short_id))}
- %for tag in c.changeset.tags:
-
- ${h.link_to(tag,h.url('files_home',repo_name=c.repo_name,revision=c.changeset.short_id))}
- %endfor
-
-
-
-
${_('Files affected')}
-
- %for change,filenode,diff,cs1,cs2 in c.changes:
-
${h.link_to(filenode.path,h.url.current(anchor='CHANGE-%s'%filenode.path))}
- %endfor
-
+
+
+
+
${_('commit')} ${c.changeset.revision}: ${c.changeset.short_id}@${c.changeset.date}
+
+
+ ${h.link_to(h.wrap_paragraphs(c.changeset.message),
+ h.url('changeset_home',repo_name=c.repo_name,revision=c.changeset.short_id))}
+
+
+
+
+ ${len(c.changeset.removed)}
+ ${len(c.changeset.changed)}
+ ${len(c.changeset.added)}
+
+ %if len(c.changeset.parents)>1:
+
+ ${_('merge')}

+
+ %endif
+ %for p_cs in reversed(c.changeset.parents):
+
${_('Parent')} ${p_cs.revision}: ${h.link_to(p_cs.short_id,
+ h.url('changeset_home',repo_name=c.repo_name,revision=p_cs.short_id),title=p_cs.message)}
+
+ %endfor
+
+
+ ${h.link_to(c.changeset.branch,h.url('files_home',repo_name=c.repo_name,revision=c.changeset.short_id))}
+ %for tag in c.changeset.tags:
+
+ ${h.link_to(tag,h.url('files_home',repo_name=c.repo_name,revision=c.changeset.short_id))}
+ %endfor
+
+
+
+
${_('Files affected')}
+
+ %for change,filenode,diff,cs1,cs2 in c.changes:
+
${h.link_to(filenode.path,h.url.current(anchor='CHANGE-%s'%filenode.path))}
+ %endfor
+
+
+
%for change,filenode,diff,cs1,cs2 in c.changes: