diff --git a/rhodecode/templates/changelog/changelog.html b/rhodecode/templates/changelog/changelog.html --- a/rhodecode/templates/changelog/changelog.html +++ b/rhodecode/templates/changelog/changelog.html @@ -16,7 +16,7 @@ ${_('%s Changelog') % c.repo_name} - ${c %def> <%def name="main()"> - ${self.context_bar('changelog')} +${self.context_bar('changelog')}
|
${h.checkbox(cs.raw_id,class_="changeset_range")}
- ${cs.revision}:${h.short_id(cs.raw_id)}
-
-
- ${h.fmt_date(cs.date)}
-
-
+ |
+
+ |
+ + + + ${cs.revision} : + ${h.short_id(cs.raw_id)} + + + | +
+ ${h.age(cs.date,True)}
+ |
+
-
-
-
- ${len(cs.affected_files)}
-
- %if len(c.comments.get(cs.raw_id,[])) > 0:
-
-
-
+ %if cs.branch:
+
+ %endif
+ ${len(c.comments[cs.raw_id])}
- |
+
+
+
+
+
+ %if cs.parents:
+ %for p_cs in reversed(cs.parents):
+
+ ${len(cs.affected_files)}
+
+
+
+ %endif
+ ${_('Parent')}
+ ${p_cs.revision}:${h.link_to(h.short_id(p_cs.raw_id),
+ h.url('changeset_home',repo_name=c.repo_name,revision=p_cs.raw_id),title=p_cs.message)}
- %if cs.parents:
- %for p_cs in reversed(cs.parents):
- ${_('Parent')}
- ${p_cs.revision}:${h.link_to(h.short_id(p_cs.raw_id),
- h.url('changeset_home',repo_name=c.repo_name,revision=p_cs.raw_id),title=p_cs.message)}
-
- %endfor
- %else:
- ${_('No parents')}
- %endif
-
- |
+