shorgru/pkg/tpl/rate.templ
Alexander Neonxp Kiryukhin e849e705c3
Добавил рейтинг
Добавил страницу топа
Добавил rss/xml/json feed
2024-10-08 03:50:53 +03:00

31 lines
520 B
Text

package tpl
import (
"fmt"
"sh.org.ru/pkg/model"
"strconv"
)
templ Rate(quote *model.Quote, act int) {
<nav class="rate">
<a
hx-post={ fmt.Sprintf("/rate/%d", quote.ID) }
hx-target="closest .rate"
hx-vals='{"vote": "up"}'
href="#"
>
<i class="fa fa-plus"></i>
</a>
&nbsp;
{ strconv.Itoa(quote.Rating) }
&nbsp;
<a
hx-post={ fmt.Sprintf("/rate/%d", quote.ID) }
hx-target="closest .rate"
hx-vals='{"vote": "down"}'
href="#"
>
<i class="fa fa-minus"></i>
</a>
</nav>
}