# HG changeset patch # User Mads Kiilerich # Date 2013-12-10 19:30:37 # Node ID 205521e789eca8634cd8497cf42ec846e50f6121 # Parent c3a68137453ae054940774280a54f253c53734c5 pull requests: show PR owner and destination and ancestor diff --git a/kallithea/templates/pullrequests/pullrequest_show.html b/kallithea/templates/pullrequests/pullrequest_show.html --- a/kallithea/templates/pullrequests/pullrequest_show.html +++ b/kallithea/templates/pullrequests/pullrequest_show.html @@ -78,6 +78,18 @@ ${self.repo_context_bar('showpullrequest
+ +
+
+
+ ${c.pull_request.other_repo.clone_url()} + ## branch link is only valid if it is a branch + ${c.other_ref_type}: ${c.other_ref_name} +
+
+
+
+
@@ -107,6 +119,20 @@ ${self.repo_context_bar('showpullrequest
${h.fmt_date(c.pull_request.created_on)}
+
+
+ +
+
+
+
+ gravatar +
+ ${c.pull_request.author.username_and_name}
+ ${c.pull_request.author.email}
+
+
+
## REVIEWERS @@ -165,6 +191,11 @@ ${self.repo_context_bar('showpullrequest
${ungettext('Showing %s commit','Showing %s commits', len(c.cs_ranges)) % len(c.cs_ranges)}
<%include file="/compare/compare_cs.html" /> +
+ ${_('Common ancestor')}: + ${h.link_to(h.short_id(c.other_rev),h.url('changeset_home',repo_name=c.other_repo.repo_name,revision=c.other_rev))} +
+ ## FILES