##// END OF EJS Templates
some formatting on list of pull-requests
marcink -
r3259:99cb0cf7 beta
parent child Browse files
Show More
@@ -22,16 +22,17 b''
22
22
23 %for pr in c.pull_requests:
23 %for pr in c.pull_requests:
24 <div>
24 <div>
25 <h4>
25 <h4 style="border:0px;padding:0px">
26 %if pr.is_closed():
26 %if pr.is_closed():
27 <img src="${h.url('/images/icons/tick.png')}" alt="${_('Closed')}" />
27 <img src="${h.url('/images/icons/tick.png')}" alt="${_('Closed')}" />
28 %endif
28 %endif
29 <a href="${h.url('pullrequest_show',repo_name=c.repo_name,pull_request_id=pr.pull_request_id)}">
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))}
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>
31 </a>
32 </h4>
32 </h4>
33 <h5 style="border:0px;padding-bottom:0px">${_('Title')}: ${pr.title}</h5>
33 <h5 style="border:0px;padding-bottom:0px">${_('Title')}: ${pr.title}</h5>
34 <div style="padding:0px 24px">${pr.description}</div>
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 </div>
36 </div>
36 %endfor
37 %endfor
37
38
General Comments 0
You need to be logged in to leave comments. Login now