Show More
@@ -22,16 +22,17 b'' | |||
|
22 | 22 | |
|
23 | 23 | %for pr in c.pull_requests: |
|
24 | 24 | <div> |
|
25 | <h4> | |
|
26 | %if pr.is_closed(): | |
|
27 | <img src="${h.url('/images/icons/tick.png')}" alt="${_('Closed')}" /> | |
|
28 | %endif | |
|
29 | <a href="${h.url('pullrequest_show',repo_name=c.repo_name,pull_request_id=pr.pull_request_id)}"> | |
|
30 | ${_('Pull request #%s opened by %s on %s') % (pr.pull_request_id, pr.author.full_name, h.fmt_date(pr.created_on))} | |
|
31 | </a> | |
|
25 | <h4 style="border:0px;padding:0px"> | |
|
26 | %if pr.is_closed(): | |
|
27 | <img src="${h.url('/images/icons/tick.png')}" alt="${_('Closed')}" /> | |
|
28 | %endif | |
|
29 | <a href="${h.url('pullrequest_show',repo_name=c.repo_name,pull_request_id=pr.pull_request_id)}"> | |
|
30 | ${_('Pull request #%s opened by %s on %s') % (pr.pull_request_id, pr.author.full_name, h.fmt_date(pr.created_on))} | |
|
31 | </a> | |
|
32 | 32 | </h4> |
|
33 | 33 | <h5 style="border:0px;padding-bottom:0px">${_('Title')}: ${pr.title}</h5> |
|
34 | 34 | <div style="padding:0px 24px">${pr.description}</div> |
|
35 | <div style="border-bottom: 1px solid #DDD;margin:10px 20px;padding-bottom:10px"></div> | |
|
35 | 36 | </div> |
|
36 | 37 | %endfor |
|
37 | 38 |
General Comments 0
You need to be logged in to leave comments.
Login now