what2watch/templates/watch-search-result.html

12 lines
444 B
HTML
Raw Normal View History

2023-12-31 00:59:27 +00:00
<tr id="watchlist-item-{{watch.id}}">
<td><span class="watchtitle">{{watch.title}}</span></td>
<td>{{watch.kind}}</td>
<td> {% call m::get_or_default(watch.year(), "when??") -%}</td>
<td>
2024-01-01 20:19:04 +00:00
<span id="add-watch-{{watch.id}}">
<span hx-get="/watch/status/{{watch.id}}?public=true" hx-target="this" hx-trigger="load, reveal"
hx-swap="outerHTML">wanna watch?</span>
</span>
</td>
2023-12-31 00:59:27 +00:00
</tr>