linkwallet/web/templates/manage.html

38 lines
1.2 KiB
HTML
Raw Normal View History

2022-05-24 18:03:31 +09:30
<div class="grid-x grid-padding-x">
<div class="large-12 cell">
<h5>Manage links</h5>
2022-05-24 18:03:31 +09:30
<table>
<tr>
<th>id</th>
<th>title/url</th>
<th>tags</th>
<th class="show-for-large">created</th>
<th class="show-for-large">scraped</th>
</tr>
2022-05-24 18:03:31 +09:30
{{ range .bookmarks }}
<tr>
<th>{{ .ID }}</th>
<td>
<a href="{{ .URL }}">{{ .Info.Title }}</a>
<br>
<a href="{{ .URL }}">{{ niceURL .URL }}</a>
</td>
<td>
2022-05-27 22:00:24 +09:30
{{ range .Tags }}
<span class="label primary">{{ . }}</span>
{{ end }}
</td>
<td class="show-for-large">{{ (nicetime .TimestampCreated).HumanDuration }} ago</td>
<td class="show-for-large">{{ (nicetime .TimestampLastScraped).HumanDuration }} ago</td>
2022-05-24 18:03:31 +09:30
<td>
<a class="button" hx-swap="outerHTML" hx-post="/scrape/{{ .ID }}">scrape</button>
2022-05-24 18:03:31 +09:30
</td>
</tr>
{{ end }}
</table>
</div>
</div>