Show More
@@ -81,8 +81,11 b'' | |||||
81 | %if len(c.changeset.parents)>1: |
|
81 | %if len(c.changeset.parents)>1: | |
82 | <span class="merge">${_('merge')}</span> |
|
82 | <span class="merge">${_('merge')}</span> | |
83 | %endif |
|
83 | %endif | |
84 | <span class="branchtag" title="${'%s %s' % (_('branch'),c.changeset.branch)}"> |
|
84 | %if c.changeset.branch: | |
85 | ${h.link_to(c.changeset.branch,h.url('files_home',repo_name=c.repo_name,revision=c.changeset.raw_id))}</span> |
|
85 | <span class="branchtag" title="${'%s %s' % (_('branch'),c.changeset.branch)}"> | |
|
86 | ${h.link_to(c.changeset.branch,h.url('files_home',repo_name=c.repo_name,revision=c.changeset.raw_id))} | |||
|
87 | </span> | |||
|
88 | %endif | |||
86 | %for tag in c.changeset.tags: |
|
89 | %for tag in c.changeset.tags: | |
87 | <span class="tagtag" title="${'%s %s' % (_('tag'),tag)}"> |
|
90 | <span class="tagtag" title="${'%s %s' % (_('tag'),tag)}"> | |
88 | ${h.link_to(tag,h.url('files_home',repo_name=c.repo_name,revision=c.changeset.raw_id))}</span> |
|
91 | ${h.link_to(tag,h.url('files_home',repo_name=c.repo_name,revision=c.changeset.raw_id))}</span> |
@@ -15,7 +15,7 b'' | |||||
15 | <div><pre><a href="${h.url('files_home',repo_name=c.repo_name,revision=cs.raw_id)}">r${cs.revision}:${h.short_id(cs.raw_id)}</a></pre></div> |
|
15 | <div><pre><a href="${h.url('files_home',repo_name=c.repo_name,revision=cs.raw_id)}">r${cs.revision}:${h.short_id(cs.raw_id)}</a></pre></div> | |
16 | </td> |
|
16 | </td> | |
17 | <td> |
|
17 | <td> | |
18 | ${h.link_to(h.truncate(cs.message,50), |
|
18 | ${h.link_to(h.truncate(cs.message,50) or _('No commit message'), | |
19 | h.url('changeset_home',repo_name=c.repo_name,revision=cs.raw_id), |
|
19 | h.url('changeset_home',repo_name=c.repo_name,revision=cs.raw_id), | |
20 | title=cs.message)} |
|
20 | title=cs.message)} | |
21 | </td> |
|
21 | </td> | |
@@ -25,9 +25,11 b'' | |||||
25 | <td title="${cs.author}">${h.person(cs.author)}</td> |
|
25 | <td title="${cs.author}">${h.person(cs.author)}</td> | |
26 | <td> |
|
26 | <td> | |
27 | <span class="logtags"> |
|
27 | <span class="logtags"> | |
|
28 | %if cs.branch: | |||
28 | <span class="branchtag"> |
|
29 | <span class="branchtag"> | |
29 | ${cs.branch} |
|
30 | ${cs.branch} | |
30 | </span> |
|
31 | </span> | |
|
32 | %endif | |||
31 | </span> |
|
33 | </span> | |
32 | </td> |
|
34 | </td> | |
33 | <td> |
|
35 | <td> |
General Comments 0
You need to be logged in to leave comments.
Login now