diff --git a/kallithea/public/css/style.css b/kallithea/public/css/style.css --- a/kallithea/public/css/style.css +++ b/kallithea/public/css/style.css @@ -4670,6 +4670,10 @@ div.pr-desc { div.pr-closed { background-color: #eee; } +tr.pr-closed td { + background-color: #eee !important; + color: #555 !important; +} span.pr-closed-tag { margin-bottom: 1px; diff --git a/kallithea/templates/pullrequests/pullrequest_data.html b/kallithea/templates/pullrequests/pullrequest_data.html --- a/kallithea/templates/pullrequests/pullrequest_data.html +++ b/kallithea/templates/pullrequests/pullrequest_data.html @@ -1,28 +1,56 @@ ## -*- coding: utf-8 -*- +
+ + + + + + + + + + + % for pr in c.pullrequests_pager: -
-
- %if pr.last_review_status: - - %else: - - %endif - - ${pr.title or _("(no title)")} - %if pr.is_closed(): - ${_('Closed')} - %endif - - ${_('opened on %s from') % (h.fmt_date(pr.created_on))} - <% org_ref_name=pr.org_ref.rsplit(':', 2)[-2] %> - - ${pr.org_repo.repo_name}#${org_ref_name} - -
-
+ + + + + + + + % endfor - +
${_('Title')}${_('Author')}${_('Date')}${_('From')}${_('To')}
+ %if pr.last_review_status: + + %else: + + %endif + + + ${pr.title or _("(no title)")} + %if pr.is_closed(): + ${_('Closed')} + %endif + + + ${pr.author.username_and_name} + + ${h.fmt_date(pr.created_on)} + + <% org_ref_name=pr.org_ref.rsplit(':', 2)[-2] %> + + ${pr.org_repo.repo_name}#${org_ref_name} + + + <% other_ref_name=pr.other_ref.rsplit(':', 2)[-2] %> + + ${pr.other_repo.repo_name}#${other_ref_name} + +
+