##// END OF EJS Templates
pullrequests: show tags in lists of included and available changesets...
Mads Kiilerich -
r5663:5fe9bb7a default
parent child Browse files
Show More
@@ -950,7 +950,7 b' tbody .yui-dt-editable { cursor: pointer'
950 }
950 }
951
951
952 #content div.box div.message {
952 #content div.box div.message {
953 clear: both;
953 float: left;
954 overflow: hidden;
954 overflow: hidden;
955 margin: 0;
955 margin: 0;
956 padding: 5px 0;
956 padding: 5px 0;
@@ -63,7 +63,16 b''
63 <td class="expand_commit" commit_id="${cs.raw_id}" title="${_('Expand commit message')}">
63 <td class="expand_commit" commit_id="${cs.raw_id}" title="${_('Expand commit message')}">
64 <i class="icon-align-left" style="color:#999"></i>
64 <i class="icon-align-left" style="color:#999"></i>
65 </td>
65 </td>
66 <td><div id="C-${cs.raw_id}" class="message">${h.urlify_commit(cs.message, c.repo_name)}</div></td>
66 <td>
67 <div style="float: right; margin-top: -4px;">
68 %for tag in cs.tags:
69 <div class="tagtag" title="${_('Tag %s') % tag}">
70 ${h.link_to(tag,h.url('changeset_home',repo_name=c.repo_name,revision=cs.raw_id))}
71 </div>
72 %endfor
73 </div>
74 <div id="C-${cs.raw_id}" class="message">${h.urlify_commit(cs.message, c.repo_name)}</div>
75 </td>
67 </tr>
76 </tr>
68 %endfor
77 %endfor
69 </table>
78 </table>
@@ -197,7 +197,16 b''
197 </td>
197 </td>
198 <td style="width: 120px"><span class="tooltip" title="${h.age(cs.date)}">${cs.date}</span></td>
198 <td style="width: 120px"><span class="tooltip" title="${h.age(cs.date)}">${cs.date}</span></td>
199 <td>${h.link_to(h.show_id(cs),h.url('changeset_home',repo_name=c.cs_repo.repo_name,revision=cs.raw_id))}</td>
199 <td>${h.link_to(h.show_id(cs),h.url('changeset_home',repo_name=c.cs_repo.repo_name,revision=cs.raw_id))}</td>
200 <td><div class="message" style="white-space:normal; height:1.1em; max-width: 500px; padding:0">${h.urlify_commit(cs.message, c.repo_name)}</div></td>
200 <td>
201 <div style="float: right; margin-top: -4px;">
202 %for tag in cs.tags:
203 <div class="tagtag" title="${_('Tag %s') % tag}">
204 ${h.link_to(tag,h.url('changeset_home',repo_name=c.repo_name,revision=cs.raw_id))}
205 </div>
206 %endfor
207 </div>
208 <div class="message" style="white-space:normal; height:1.1em; max-width: 500px; padding:0">${h.urlify_commit(cs.message, c.repo_name)}</div>
209 </td>
201 %endif
210 %endif
202 </tr>
211 </tr>
203 %endfor
212 %endfor
General Comments 0
You need to be logged in to leave comments. Login now