From 87b593f93eb3da096aabb49e19f85030fb1204c7 Mon Sep 17 00:00:00 2001
From: Andrey Nering <andrey.nering@gmail.com>
Date: Wed, 12 Oct 2016 10:28:51 -0300
Subject: [PATCH] Show issue/PR number on title

---
 routers/repo/issue.go | 2 +-
 routers/repo/pull.go  | 3 ++-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/routers/repo/issue.go b/routers/repo/issue.go
index 76d81d0e7..f638b6f51 100644
--- a/routers/repo/issue.go
+++ b/routers/repo/issue.go
@@ -502,7 +502,7 @@ func ViewIssue(ctx *context.Context) {
 		}
 		return
 	}
-	ctx.Data["Title"] = issue.Title
+	ctx.Data["Title"] = fmt.Sprintf("#%d - %s", issue.Index, issue.Title)
 
 	// Make sure type and URL matches.
 	if ctx.Params(":type") == "issues" && issue.IsPull {
diff --git a/routers/repo/pull.go b/routers/repo/pull.go
index d345dbee0..baa8c1d0b 100644
--- a/routers/repo/pull.go
+++ b/routers/repo/pull.go
@@ -6,6 +6,7 @@ package repo
 
 import (
 	"container/list"
+	"fmt"
 	"path"
 	"strings"
 
@@ -148,7 +149,7 @@ func checkPullInfo(ctx *context.Context) *models.Issue {
 		}
 		return nil
 	}
-	ctx.Data["Title"] = issue.Title
+	ctx.Data["Title"] = fmt.Sprintf("#%d - %s", issue.Index, issue.Title)
 	ctx.Data["Issue"] = issue
 
 	if !issue.IsPull {