##// END OF EJS Templates
show comments in summary changelog overview
marcink -
r3765:5a8918ab beta
parent child Browse files
Show More
@@ -2590,6 +2590,7 h3.files_location {
2590 2590 }
2591 2591
2592 2592 #graph_content .comments-container,
2593 #shortlog_data .comments-container,
2593 2594 #graph_content .logtags {
2594 2595 display: block;
2595 2596 float: left;
@@ -2688,7 +2689,13 h3.files_location {
2688 2689 padding: 5px 0;
2689 2690 }
2690 2691
2691 #graph_content .comments-cnt a {
2692 #shortlog_data .comments-cnt {
2693 color: rgb(136, 136, 136);
2694 padding: 3px 0;
2695 }
2696
2697 #graph_content .comments-cnt a,
2698 #shortlog_data .comments-cnt a {
2692 2699 background-image: url('../images/icons/comments.png');
2693 2700 background-repeat: no-repeat;
2694 2701 background-position: 100% 50%;
@@ -101,7 +101,7
101 101 <div class="message">${h.urlify_commit(cs.message, c.repo_name,h.url('changeset_home',repo_name=c.repo_name,revision=cs.raw_id))}</div>
102 102 <div class="expand"><span class="expandtext">&darr; ${_('Show more')} &darr;</span></div>
103 103 <div class="extra-container">
104 %if c.comments.get(cs.raw_id,[]):
104 %if c.comments.get(cs.raw_id):
105 105 <div class="comments-container">
106 106 <div class="comments-cnt" title="${('comments')}">
107 107 <a href="${h.url('changeset_home',repo_name=c.repo_name,revision=cs.raw_id,anchor='comment-%s' % c.comments[cs.raw_id][0].comment_id)}">
@@ -13,6 +13,15
13 13 <td>
14 14 <div>
15 15 <div class="changeset-status-container">
16 %if c.comments.get(cs.raw_id,[]):
17 <div class="comments-container">
18 <div class="comments-cnt" title="${('comments')}">
19 <a href="${h.url('changeset_home',repo_name=c.repo_name,revision=cs.raw_id,anchor='comment-%s' % c.comments[cs.raw_id][0].comment_id)}">
20 ${len(c.comments[cs.raw_id])}
21 </a>
22 </div>
23 </div>
24 %endif
16 25 %if c.statuses.get(cs.raw_id):
17 26 <div class="changeset-status-ico">
18 27 %if c.statuses.get(cs.raw_id)[2]:
General Comments 0
You need to be logged in to leave comments. Login now