Browse Source

remember page number when delete repo

Unknwon 9 years ago
parent
commit
89244b74c6
2 changed files with 2 additions and 2 deletions
  1. 1 1
      routers/admin/repos.go
  2. 1 1
      templates/admin/repo/list.tmpl

+ 1 - 1
routers/admin/repos.go

@@ -56,6 +56,6 @@ func DeleteRepo(ctx *middleware.Context) {
 
 	ctx.Flash.Success(ctx.Tr("repo.settings.deletion_success"))
 	ctx.JSON(200, map[string]interface{}{
-		"redirect": setting.AppSubUrl + "/admin/repos",
+		"redirect": setting.AppSubUrl + "/admin/repos?page=" + ctx.Query("page"),
 	})
 }

+ 1 - 1
templates/admin/repo/list.tmpl

@@ -34,7 +34,7 @@
 								<td>{{.NumStars}}</td>
 								<td>{{.NumIssues}}</td>
 								<td><span title="{{DateFmtLong .Created}}">{{DateFmtShort .Created}}</span></td>
-								<td><a class="delete-button" href="" data-url="{{$.Link}}/delete" data-id="{{.ID}}"><i class="trash icon text red"></i></a></td>
+								<td><a class="delete-button" href="" data-url="{{$.Link}}/delete?page={{$.Page.Current}}" data-id="{{.ID}}"><i class="trash icon text red"></i></a></td>
 							</tr>
 							{{end}}
 						</tbody>