add create repository button

This commit is contained in:
Lunny Xiao 2014-03-03 09:52:12 +08:00
parent c5132b87a6
commit 0632198a40
2 changed files with 8 additions and 5 deletions

View file

@ -44,8 +44,8 @@ func Create(req *http.Request, r render.Render) {
}
if err != nil {
r.HTML(403, "status/403", map[string]interface{}{
"Title": fmt.Sprintf("%v", err),
r.HTML(200, "base/error", map[string]interface{}{
"Error": fmt.Sprintf("%v", err),
})
}
}
@ -60,7 +60,9 @@ func Delete(req *http.Request, r render.Render) {
u := &models.User{}
err := models.DeleteRepository(u, "")
r.HTML(403, "status/403", map[string]interface{}{
"Title": fmt.Sprintf("%v", err),
})
if err != nil {
r.HTML(200, "base/error", map[string]interface{}{
"Error": fmt.Sprintf("%v", err),
})
}
}