2024-02-23 11:22:28 +01:00
|
|
|
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, "")
|
2024-02-23 18:39:05 +01:00
|
|
|
c.HTML(http.StatusOK, "", templates.SubnetsPage(templates.GenMetaContent(c), subnets))
|
2024-02-23 11:22:28 +01:00
|
|
|
|
|
|
|
}
|