I want to pass a slice that contains structs and display all of them in the view.
type Person struct {
ID int
NAME string
}
Example of a slice of structs
[{1 John},{2, Mary},{3, Steven},{4, Mike}]
What I want in index.html
1 - John
2 - Mary
3 - Steven
4 - Mike