ictgj-voting/admin_archive.go

21 lines
353 B
Go
Raw Normal View History

2017-10-03 14:01:32 +00:00
package main
import (
"net/http"
"github.com/gorilla/mux"
)
func handleAdminArchive(w http.ResponseWriter, req *http.Request, page *pageData) {
vars := mux.Vars(req)
page.SubTitle = "GameJam Archive"
id := vars["id"]
if id == "" {
// Archive List
type archivePageData struct {
Gamejams []Gamejam
}
2017-10-19 19:53:07 +00:00
//apd := new(archivePageData)
2017-10-03 14:01:32 +00:00
}
}