package templates
import "git.jmbit.de/jmb/goipam/db"
import "fmt"
templ SubnetDetails(metaContent MetaContent, title string, subnet *db.Subnet) {
@wrapBase(metaContent, title) {
@subnetMain(subnet)
}
}
templ subnetMain(subnet *db.Subnet) {
}
templ SubnetStatic(subnet *db.Subnet) {
{ subnet.Name }
{ subnet.DisplayName }
{ fmt.Sprint(subnet.VLAN) }
{ subnet.IPv4Net }
{ subnet.IPv6Net }
{ fmt.Sprint(subnet.VLAN) }
}
templ SubnetForm(subnet *db.Subnet) {
}