Files @ b19b1723ff10
Branch filter:

Location: kallithea/rhodecode/templates/admin/users/user_edit_my_account_pullrequests.html

Mads Kiilerich
pullrequest: pullrequest from changelog view

It seems like it didn't work ... perhaps because I broke it. But now we clean
it up and make it work:

Use rev_end as the revision to merge. We don't know where to merge ... but
start_rev cannot be used for that.

This might to some extent have been working before ... but we prefer to clean
it up and start over again when the normal merge workflow is fully working.
%if c.show_closed:
  ${h.checkbox('show_closed',checked="checked", label=_('Show closed pull requests'))}
%else:
  ${h.checkbox('show_closed',label=_('Show closed pull requests'))}
%endif
<div class="pullrequests_section_head">${_('Opened by me')}</div>
<ul>
    %if c.my_pull_requests:
      %for pull_request in c.my_pull_requests:
      <li>
        <div style="height: 12px">
          <div style="float:left">
          %if pull_request.is_closed():
              <img src="${h.url('/images/icons/lock_go.png')}" title="${_('Closed')}"/>
          %endif
          <img src="${h.url('/images/icons/flag_status_%s.png' % str(pull_request.last_review_status))}" />
          <a href="${h.url('pullrequest_show',repo_name=pull_request.other_repo.repo_name,pull_request_id=pull_request.pull_request_id)}">
          ${_('Pull request #%s opened on %s') % (pull_request.pull_request_id, h.fmt_date(pull_request.created_on))}
          </a>
          </div>
          <div style="float:left;margin-top: -5px">
            ${h.form(url('pullrequest_delete', repo_name=pull_request.other_repo.repo_name, pull_request_id=pull_request.pull_request_id),method='delete')}
              ${h.submit('remove_%s' % pull_request.pull_request_id,'',class_="delete_icon action_button",onclick="return confirm('"+_('Confirm to delete this pull request')+"');")}
            ${h.end_form()}
          </div>
        </div>
      </li>
      %endfor
   %else:
    <li><span class="empty_data">${_('Nothing here yet')}</span></li>
   %endif
</ul>

<div class="pullrequests_section_head" style="clear:both">${_('I participate in')}</div>
<ul>
    %if c.participate_in_pull_requests:
      %for pull_request in c.participate_in_pull_requests:
      <li>
        <div style="height: 12px">
        %if pull_request.is_closed():
            <img src="${h.url('/images/icons/lock_go.png')}" title="${_('Closed')}"/>
        %endif
        <img src="${h.url('/images/icons/flag_status_%s.png' % str(pull_request.last_review_status))}" />
        <a href="${h.url('pullrequest_show',repo_name=pull_request.other_repo.repo_name,pull_request_id=pull_request.pull_request_id)}">
        ${_('Pull request #%s opened by %s on %s') % (pull_request.pull_request_id, pull_request.author.full_name, h.fmt_date(pull_request.created_on))}
        </a>
      </div>
      </li>
      %endfor
    %else:
     <li><span class="empty_data">${_('Nothing here yet')}</span></li>
    %endif
</ul>