Show More
@@ -2590,6 +2590,7 h3.files_location { | |||||
2590 | } |
|
2590 | } | |
2591 |
|
2591 | |||
2592 | #graph_content .comments-container, |
|
2592 | #graph_content .comments-container, | |
|
2593 | #shortlog_data .comments-container, | |||
2593 | #graph_content .logtags { |
|
2594 | #graph_content .logtags { | |
2594 | display: block; |
|
2595 | display: block; | |
2595 | float: left; |
|
2596 | float: left; | |
@@ -2688,7 +2689,13 h3.files_location { | |||||
2688 | padding: 5px 0; |
|
2689 | padding: 5px 0; | |
2689 | } |
|
2690 | } | |
2690 |
|
2691 | |||
2691 |
# |
|
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 | background-image: url('../images/icons/comments.png'); |
|
2699 | background-image: url('../images/icons/comments.png'); | |
2693 | background-repeat: no-repeat; |
|
2700 | background-repeat: no-repeat; | |
2694 | background-position: 100% 50%; |
|
2701 | background-position: 100% 50%; |
@@ -101,7 +101,7 | |||||
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> |
|
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 | <div class="expand"><span class="expandtext">↓ ${_('Show more')} ↓</span></div> |
|
102 | <div class="expand"><span class="expandtext">↓ ${_('Show more')} ↓</span></div> | |
103 | <div class="extra-container"> |
|
103 | <div class="extra-container"> | |
104 |
%if c.comments.get(cs.raw_id |
|
104 | %if c.comments.get(cs.raw_id): | |
105 | <div class="comments-container"> |
|
105 | <div class="comments-container"> | |
106 | <div class="comments-cnt" title="${('comments')}"> |
|
106 | <div class="comments-cnt" title="${('comments')}"> | |
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)}"> |
|
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 | <td> |
|
13 | <td> | |
14 | <div> |
|
14 | <div> | |
15 | <div class="changeset-status-container"> |
|
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 | %if c.statuses.get(cs.raw_id): |
|
25 | %if c.statuses.get(cs.raw_id): | |
17 | <div class="changeset-status-ico"> |
|
26 | <div class="changeset-status-ico"> | |
18 | %if c.statuses.get(cs.raw_id)[2]: |
|
27 | %if c.statuses.get(cs.raw_id)[2]: |
General Comments 0
You need to be logged in to leave comments.
Login now