Started working on job UI implementation

This commit is contained in:
2018-04-28 19:44:44 +02:00
parent 3983894a27
commit 59633707c1
6 changed files with 61 additions and 1 deletions

View File

@ -9,6 +9,7 @@ import (
"github.com/animenotifier/notify.moe/pages/editor/filteranime"
"github.com/animenotifier/notify.moe/pages/editor/filtercompanies"
"github.com/animenotifier/notify.moe/pages/editor/filtersoundtracks"
"github.com/animenotifier/notify.moe/pages/editor/jobs"
)
// Register registers the page routes.
@ -62,6 +63,9 @@ func Register(l *layout.Layout) {
l.Page("/editor/soundtracks/tags", filtersoundtracks.Tags)
l.Page("/editor/soundtracks/file", filtersoundtracks.File)
// Editor - Jobs
l.Page("/editor/jobs", jobs.Overview)
// Log
l.Page("/log", editlog.Get)
l.Page("/log/from/:index", editlog.Get)