Files @ 9dd726706178
Branch filter:

Location: kallithea/rhodecode/templates/admin/my_account/my_account_pullrequests.html - annotation

Bradley M. Kuhn
Complete copyright notices for web interface; change footer to link to them.

The original copyright notice found in the footer was not accurate as it
included only one of the many copyright holders in this project. This change
creates an "about" page, which currently contains just the copyright and
license information. It links to repository for additional potential copyright
holders not listed on the about page.

Unlisted contributors are mentioned in template comments.

Html links for Kallithea is fixed and we link to Conservancy.

Display of version information in the footer is improved.
%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 class="${'closed' if pull_request.is_closed() else ''}">
        <div style="height: 12px">
          <div style="float:left">
            <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))}
              %if pull_request.is_closed():
                (${_('Closed')})
              %endif
            </a>
          </div>
          <div style="float:left;padding:4px 0px 0px 5px">
            ${h.form(url('pullrequest_delete', repo_name=pull_request.other_repo.repo_name, pull_request_id=pull_request.pull_request_id),method='delete')}
              <i class="icon-remove-sign" style="color:#FF4444"></i>
              ${h.submit('remove_%s' % pull_request.pull_request_id, _('delete'),
              class_="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 class="${'closed' if pull_request.is_closed() else ''}">
        <div style="height: 12px">
          <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>
          %if pull_request.is_closed():
            (${_('Closed')})
          %endif
        </div>
      </li>
      %endfor
    %else:
     <li><span class="empty_data">${_('Nothing here yet')}</span></li>
    %endif
</ul>

<script>
    $('#show_closed').on('click', function(e){
        if($(this).is(":checked")){
            window.location = "${h.url('my_account_pullrequests', pr_show_closed=1)}";
        }
        else{
            window.location = "${h.url('my_account_pullrequests')}";
        }
    })
</script>