Pessoal, poderiam me ajuda, após eu incluir o onclick="onDelete('{{.Id}}')" para deletar a pagina buga e fica conforme e o print abaixo:
Se eu remove, monstra corretamente, mas ai logicamente que não funciona a função segue o meu html.
{{define "Index"}}
{{template "_head"}}
{{template "_menu"}}
<body>
<div class="container">
<section class="card">
<div>
<table class="table table-striped table-hover mb-0">
<thead>
<tr>
<th>Nome</th>
<th>Descrição</th>
<th>Preço</th>
<th>Quantidade</th>
</tr>
</thead>
<tbody>
{{range .}}
<tr>
<td>{{.Nome}}</td>
<td>{{.Descricao}}</td>
<td>{{.Preco}}</td>
<td>{{.Quantidade}}</td>
<td><button onclick="onDelete('{{.Id}}')" class="btn btn-info">Deletar</button></td>
</tr>
{{end}}
</tbody>onclick="onDelete('{{.Id}}')"
</table>
</div>
</section>
<div class="card-footer">
<a href="/new" class="btn btn-primary mb-2">Criar novo produto</a>
</div>
</div>
</body>
<script>
function onDelete(id){
let resposta = confirm("Tem certeza que deseja deletar esse produto?")
if (resposta){
window.location = "/delete?id=" + id
}
}
</script>
</html>
{{end}}