Show More
@@ -3013,6 +3013,7 b' div.form div.fields div.buttons input' | |||||
3013 | height: 12px; |
|
3013 | height: 12px; | |
3014 | margin-bottom: 4px; |
|
3014 | margin-bottom: 4px; | |
3015 | margin-left: 5px; |
|
3015 | margin-left: 5px; | |
|
3016 | white-space: pre; | |||
3016 | } |
|
3017 | } | |
3017 |
|
3018 | |||
3018 | #clone_url{ |
|
3019 | #clone_url{ |
@@ -57,12 +57,17 b'' | |||||
57 | <div class="merge"> |
|
57 | <div class="merge"> | |
58 | ${_('merge')}<img alt="merge" src="/images/icons/arrow_join.png"/> |
|
58 | ${_('merge')}<img alt="merge" src="/images/icons/arrow_join.png"/> | |
59 | </div> |
|
59 | </div> | |
60 |
%endif |
|
60 | %endif | |
|
61 | ||||
|
62 | %if c.changeset.parents: | |||
61 | %for p_cs in reversed(c.changeset.parents): |
|
63 | %for p_cs in reversed(c.changeset.parents): | |
62 | <div class="parent">${_('Parent')} ${p_cs.revision}: ${h.link_to(p_cs.short_id, |
|
64 | <div class="parent">${_('Parent')} ${p_cs.revision}: ${h.link_to(p_cs.short_id, | |
63 | h.url('changeset_home',repo_name=c.repo_name,revision=p_cs.short_id),title=p_cs.message)} |
|
65 | h.url('changeset_home',repo_name=c.repo_name,revision=p_cs.short_id),title=p_cs.message)} | |
64 | </div> |
|
66 | </div> | |
65 | %endfor |
|
67 | %endfor | |
|
68 | %else: | |||
|
69 | <div class="parent">${_('No parents')}</div> | |||
|
70 | %endif | |||
66 | <span class="logtags"> |
|
71 | <span class="logtags"> | |
67 | <span class="branchtag" title="${'%s %s' % (_('branch'),c.changeset.branch)}"> |
|
72 | <span class="branchtag" title="${'%s %s' % (_('branch'),c.changeset.branch)}"> | |
68 | ${h.link_to(c.changeset.branch,h.url('files_home',repo_name=c.repo_name,revision=c.changeset.short_id))}</span> |
|
73 | ${h.link_to(c.changeset.branch,h.url('files_home',repo_name=c.repo_name,revision=c.changeset.short_id))}</span> |
General Comments 0
You need to be logged in to leave comments.
Login now