fdbf06e610
* Increase max torrent per page * Increase max torrent per page * fix html error by changing an ID into a class * change css selector from id to class * Update oldNav.jet.html * Update classic.css * Update captcha.jet.html * Fix order of torrents in admin panel index * Update settings.jet.html * make lang postform have same name as cookie
22 lignes
767 o
Go
22 lignes
767 o
Go
package moderatorController
|
|
|
|
import (
|
|
"github.com/NyaaPantsu/nyaa/models"
|
|
"github.com/NyaaPantsu/nyaa/models/comments"
|
|
"github.com/NyaaPantsu/nyaa/models/reports"
|
|
"github.com/NyaaPantsu/nyaa/models/torrents"
|
|
"github.com/NyaaPantsu/nyaa/models/users"
|
|
"github.com/NyaaPantsu/nyaa/templates"
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
// IndexModPanel : Controller for showing index page of Mod Panel
|
|
func IndexModPanel(c *gin.Context) {
|
|
offset := 10
|
|
torrents, _, _ := torrents.FindAllOrderBy("torrent_id DESC", offset, 0)
|
|
users, _ := users.FindUsersForAdmin(offset, 0)
|
|
comments, _ := comments.FindAll(offset, 0, "", "")
|
|
torrentReports, _, _ := reports.GetAll(offset, 0)
|
|
|
|
templates.PanelAdmin(c, torrents, models.TorrentReportsToJSON(torrentReports), users, comments)
|
|
}
|