linkwallet/web/templates/manage_results.html

31 lines
1.2 KiB
HTML
Raw Normal View History

<table id="manage-results">
<tr>
<th>&nbsp;</th>
2025-05-01 23:39:51 +09:30
<th>title</th>
<th>tags</th>
2025-05-01 23:39:51 +09:30
<th>created</th>
<th>scraped</th>
</tr>
2025-05-01 23:39:51 +09:30
{{ range .results }}
<tr>
2025-05-01 23:39:51 +09:30
<th><a class="button" href="/edit/{{ .Bookmark.ID }}">edit</a></th>
<td>
2025-05-01 23:39:51 +09:30
<a href="{{ .Bookmark.URL }}">{{ .Bookmark.Info.Title }}</a>
<br>
2025-05-01 23:39:51 +09:30
<a href="{{ .Bookmark.URL }}">{{ niceURL .Bookmark.URL }}</a>
</td>
<td>
2025-05-01 23:39:51 +09:30
{{ range .Bookmark.Tags }}
<span class="label primary">{{ . }}</span>
{{ end }}
</td>
2025-05-01 23:39:51 +09:30
<td class="show-for-large">{{ (nicetime .Bookmark.TimestampCreated).HumanDuration }} ago</td>
<td class="show-for-large">{{ (nicetime .Bookmark.TimestampLastScraped).HumanDuration }} ago</td>
<td>
2025-05-01 23:39:51 +09:30
<a class="button" hx-swap="outerHTML" hx-post="/scrape/{{ .Bookmark.ID }}">scrape</button>
</td>
</tr>
{{ end }}
</table>