# HG changeset patch # User Mads Kiilerich # Date 1364336994 -3600 # Node ID 5f1f7794835503b56fca7d438594cddec276470b # Parent 2ea981f9da7994eed7b7c0efc1fda70a9b8d2eb9 compare: reorder columns in changeset list - this feels more natural to me - but we should probably also try to be more consistent. diff -r 2ea981f9da79 -r 5f1f77948355 rhodecode/templates/compare/compare_cs.html --- a/rhodecode/templates/compare/compare_cs.html Tue Mar 26 23:21:40 2013 +0100 +++ b/rhodecode/templates/compare/compare_cs.html Tue Mar 26 23:29:54 2013 +0100 @@ -6,19 +6,19 @@ %for cs in reversed(c.cs_ranges): - + + + - -
gravatar
%if cs.raw_id in c.statuses:
%endif
${cs.date}
gravatar
${h.person(cs.author)}
${h.link_to('r%s:%s' % (cs.revision,h.short_id(cs.raw_id)),h.url('changeset_home',repo_name=c.other_repo.repo_name,revision=cs.raw_id))} %if c.as_form: ${h.hidden('revisions',cs.raw_id)} %endif
${h.person(cs.author)}
${cs.date} ${cs.branch}
${h.urlify_commit(h.shorter(cs.message, 60),c.repo_name)}