()
| 40 | } |
| 41 | |
| 42 | func (this *ManagerController) Index() { |
| 43 | this.TplName = "manager/index.html" |
| 44 | this.Data["Model"] = models.NewDashboard().Query() |
| 45 | this.GetSeoByPage("manage_dashboard", map[string]string{ |
| 46 | "title": "仪表盘 - " + this.Sitename, |
| 47 | "keywords": "仪表盘", |
| 48 | "description": this.Sitename + "专注于文档在线写作、协作、分享、阅读与托管,让每个人更方便地发布、分享和获得知识。", |
| 49 | }) |
| 50 | this.Data["Installed"] = utils.GetInstalledDependencies() |
| 51 | this.Data["IsDashboard"] = true |
| 52 | } |
| 53 | |
| 54 | func (this *ManagerController) UpdateMemberNoRank() { |
| 55 | memberId, _ := this.GetInt("member_id", 0) |
nothing calls this directly
no test coverage detected