package app import ( "fmt" "net/url" "github.com/seaweedfs/seaweedfs/weed/admin/dash" ) templ IcebergNamespaces(data dash.IcebergNamespacesData) {

Bucket ARN: { data.BucketARN }
Catalog
{ data.CatalogName }
Total Namespaces
{ fmt.Sprintf("%d", data.TotalNamespaces) }
Catalog Browser
    for idx, ns := range data.Namespaces {
  • {{ namespaceID := fmt.Sprintf("iceberg-namespace-%d", idx) }}
    Open
    Loading...
  • } if len(data.Namespaces) == 0 {
  • No namespaces available.
  • }
Namespaces
for _, ns := range data.Namespaces { } if len(data.Namespaces) == 0 { }
Namespace REST Endpoint Created Actions
{ ns.Name } /v1/{ data.CatalogName }/namespaces/{ ns.Name }/tables if ns.CreatedAt.IsZero() { - } else { { ns.CreatedAt.Format("2006-01-02 15:04") } }
No namespaces found

Create namespaces via the Iceberg REST API or S3 Tables API.

}