17 lines
319 B
Go
17 lines
319 B
Go
package ui
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
"git.jmbit.de/jmb/goipam/db"
|
|
"git.jmbit.de/jmb/goipam/web/templates"
|
|
)
|
|
|
|
func getSubnetsPage(c *gin.Context) {
|
|
subnets := db.SubnetsList(&db.Subnet{}, -1, -1, "")
|
|
c.HTML(http.StatusOK, "", templates.SubnetsPage(templates.GenMetaContent(c), subnets))
|
|
|
|
}
|