Files @ 508a49a1a02f
Branch filter:

Location: kallithea/kallithea/templates/pullrequests/pullrequest_show_my_data.html

Thomas De Schampheleire
pullrequest overview: sanitize display style

Remove the unnecessarily large font size on the pullrequest overview to line
up with the styling of 'my pullrequests'.

Additionally, add some whitespace between the 'show closed PRs' link and the
actual list.
${h.checkbox('show_closed',checked="checked" if c.show_closed else "", label=_('Show closed pull requests (in addition to open pull requests)'))}
<div class="pullrequests_section_head">${_('Pull Requests Created 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">
            %if pull_request.last_review_status:
              <i class="icon-circle changeset-status-${pull_request.last_review_status}" title="${_("Someone voted: %s") % pull_request.last_review_status}"></i>
            %else:
              <i class="icon-circle changeset-status-not_reviewed" title="${_("Nobody voted")}"></i>
            %endif
            <a href="${pull_request.url()}">
              ${pull_request.title or _("(no title)")}
            </a>
            ${_('created on %s from') % (h.fmt_date(pull_request.created_on))}
            <% org_ref_name=pull_request.org_ref.rsplit(':', 2)[-2] %>
            <a href="${h.url('summary_home', repo_name=pull_request.org_repo.repo_name, anchor=org_ref_name)}">
              ${pull_request.org_repo.repo_name}#${org_ref_name}
            </a>
            %if pull_request.is_closed():
              (${_('Closed')})
            %endif
            ${h.form(url('pullrequest_delete', repo_name=pull_request.other_repo.repo_name, pull_request_id=pull_request.pull_request_id),method='delete', style="display:inline-block")}
            <button class="action_button"
                    id="remove_${pull_request.pull_request_id}"
                    name="remove_${pull_request.pull_request_id}"
                    title="${_('Delete Pull Request')}"
                    onclick="return confirm('${_('Confirm to delete this pull request')}');">
              <i class="icon-minus-circled"></i>
            </button>
            ${h.end_form()}
        </div>
      </li>
    %endfor
  %else:
    <li><span class="empty_data">${_('Nothing here yet')}</span></li>
  %endif
</ul>

<div class="pullrequests_section_head" style="clear:both">${_('Pull Requests 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">
            %if pull_request.last_review_status:
              <i class="icon-circle changeset-status-${pull_request.last_review_status}" title="${_("Someone voted: %s") % pull_request.last_review_status}"></i>
            %else:
              <i class="icon-circle changeset-status-not_reviewed" title="${_("Nobody voted")}"></i>
            %endif
            <a href="${pull_request.url()}">
              ${pull_request.title or _("(no title)")}
            </a>
            ${_('from')}
            <% org_ref_name=pull_request.org_ref.rsplit(':', 2)[-2] %>
            <a href="${h.url('summary_home', repo_name=pull_request.org_repo.repo_name, anchor=org_ref_name)}">
              ${pull_request.org_repo.repo_name}#${org_ref_name}
            </a>
            ${_('created on %s') % (h.fmt_date(pull_request.created_on))}
            %if pull_request.is_closed():
              (${_('Closed')})
            %endif
        </div>
      </li>
    %endfor
  %else:
    <li><span class="empty_data">${_('Nothing here yet')}</span></li>
  %endif
</ul>