package app import ( "fmt" "github.com/seaweedfs/seaweedfs/weed/admin/dash" ) templ IcebergTables(data dash.IcebergTablesData) {

Namespace
{ data.NamespaceName }
Total Tables
{ fmt.Sprintf("%d", data.TotalTables) }
Tables
for _, table := range data.Tables { } if len(data.Tables) == 0 { }
Table Name Type S3 Location Created
{ table.Name } Iceberg s3://{ data.CatalogName }/{ data.NamespaceName }/{ table.Name }/ { table.CreatedAt.Format("2006-01-02 15:04") }
No tables found

Create tables via the Iceberg REST API.

}