mantoze

Results 2 issues of mantoze

My structs: type Client struct { bun.BaseModel `bun:"table:clients,alias:c"` ID int `json:"id" bun:"id,pk,autoincrement"` Title string `json:"title" bun:"title" validate:"required,max=100"` Code string `json:"code" bun:"code" validate:"required"` VatCode string `json:"vat_code" bun:"vat_code"` Address string `json:"address" bun:"address"`...

Hi, Is it possible make two levels ul/ol list? I have data: ``` type Ddd struct { Doc string Pastabos []string } type TemplateData struct { DocPastabos []Ddd } data...

bug