HTML responses template with given status.
(status int, name string)
| 115 | |
| 116 | // HTML responses template with given status. |
| 117 | func (c *Context) HTML(status int, name string) { |
| 118 | log.Trace("Template: %s", name) |
| 119 | c.Context.HTML(status, name) |
| 120 | } |
| 121 | |
| 122 | // Success responses template with status http.StatusOK. |
| 123 | func (c *Context) Success(name string) { |
no outgoing calls