|
|
@@ -49,6 +49,12 @@ func DatasetIndex(ctx *context.Context) { |
|
|
|
ctx.NotFound("GetDatasetByRepo", err) |
|
|
|
return |
|
|
|
} |
|
|
|
|
|
|
|
if ctx.Query("type") == "" { |
|
|
|
log.Error("not found param type") |
|
|
|
ctx.NotFound("type error", nil) |
|
|
|
return |
|
|
|
} |
|
|
|
err = models.GetDatasetAttachments(ctx.QueryInt("type"), dataset) |
|
|
|
if err != nil { |
|
|
|
ctx.ServerError("GetDatasetAttachments", err) |
|
|
@@ -116,5 +122,5 @@ func EditDatasetPost(ctx *context.Context, form auth.EditDatasetForm) { |
|
|
|
ctx.HTML(200, tplIndex) |
|
|
|
log.Error("%v", err) |
|
|
|
} |
|
|
|
ctx.Redirect(ctx.Repo.RepoLink + "/datasets") |
|
|
|
ctx.Redirect(ctx.Repo.RepoLink + "/datasets?type=" + form.Type) |
|
|
|
} |