Changeset - a5e32ed7f790
[Not reviewed]
beta
0 1 0
Marcin Kuzminski - 13 years ago 2012-07-11 00:31:09
marcin@python-works.com
little love for pull-requests list
1 file changed with 8 insertions and 1 deletions:
0 comments (0 inline, 0 general)
rhodecode/templates/pullrequests/pullrequest_show_all.html
Show inline comments
 
@@ -21,7 +21,14 @@
 
    </div>
 

	
 
    %for pr in c.pull_requests:
 
        <a href="${h.url('pullrequest_show',repo_name=c.repo_name,pull_request_id=pr.pull_request_id)}">#${pr.pull_request_id}</a>
 
        <div>
 
          <h4><a href="${h.url('pullrequest_show',repo_name=c.repo_name,pull_request_id=pr.pull_request_id)}">
 
          ${_('Pull request #%s opened by %s on %s') % (pr.pull_request_id, pr.author.full_name, h.fmt_date(pr.created_on))}
 
          </a>
 
          </h4>
 
          <h5 style="border:0px;padding-bottom:0px">${_('Title')}: ${pr.title}</h5>
 
          <div style="padding:0px 24px">${pr.description}</div>
 
        </div>
 
    %endfor
 

	
 
</div>
0 comments (0 inline, 0 general)