Browse Source

remember page number when delete repo

tags/v1.2.0-rc1
Unknwon 9 years ago
parent
commit
ad91518721
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 View File

@@ -56,6 +56,6 @@ func DeleteRepo(ctx *middleware.Context) {


ctx.Flash.Success(ctx.Tr("repo.settings.deletion_success")) ctx.Flash.Success(ctx.Tr("repo.settings.deletion_success"))
ctx.JSON(200, map[string]interface{}{ 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 View File

@@ -34,7 +34,7 @@
<td>{{.NumStars}}</td> <td>{{.NumStars}}</td>
<td>{{.NumIssues}}</td> <td>{{.NumIssues}}</td>
<td><span title="{{DateFmtLong .Created}}">{{DateFmtShort .Created}}</span></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> </tr>
{{end}} {{end}}
</tbody> </tbody>


Loading…
Cancel
Save