diff --git a/rhodecode/templates/compare/compare_cs.html b/rhodecode/templates/compare/compare_cs.html new file mode 100644 --- /dev/null +++ b/rhodecode/templates/compare/compare_cs.html @@ -0,0 +1,23 @@ +## Changesets table ! +
+ + %if not c.cs_ranges: + + %else: + %for cnt, cs in enumerate(c.cs_ranges): + + + + + + + + + %endfor + %endif +
${_('No changesets')}
gravatar
+ %if cs.raw_id in c.statuses: +
+ %endif +
${h.link_to('r%s:%s' % (cs.revision,h.short_id(cs.raw_id)),h.url('changeset_home',repo_name=c.repo_name,revision=cs.raw_id))}
${h.person(cs.author)}
${cs.date}
${h.urlify_commit(h.wrap_paragraphs(cs.message),c.repo_name)}
+
\ No newline at end of file