From 2a5b435241911cb0ad68f050130ff083b4c74274 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Jun 05 2015 15:27:05 +0000 Subject: [PATCH 1/2] Display the target of the PR as well as the origin in the PR page --- diff --git a/pagure/templates/pull_request.html b/pagure/templates/pull_request.html index 8033681..34d0e41 100644 --- a/pagure/templates/pull_request.html +++ b/pagure/templates/pull_request.html @@ -114,6 +114,19 @@ + To + + + {{ pull_request.project.fullname }} ({{ pull_request.branch }}) + + + + Created {{ pull_request.date_created |humanize }} From 8c958ffd7a8d29eeb39874b6be0252fcc6f71e46 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Jun 05 2015 15:59:58 +0000 Subject: [PATCH 2/2] Limit the size of the list on the front page --- diff --git a/pagure/static/pagure.css b/pagure/static/pagure.css index deb0388..cee4059 100644 --- a/pagure/static/pagure.css +++ b/pagure/static/pagure.css @@ -446,6 +446,9 @@ table.list tbody td > a .admin_list { float: right; width: 40%; +} + +.admin_list ul{ padding-right: 5em; max-height: 200px; overflow: auto; @@ -459,6 +462,11 @@ table.list tbody td > a width: 50%; } +.branch_list ul{ + max-height: 200px; + overflow: auto; +} + .commit_list li > a > span.commitdate { color: #4d4d4d;