45 lines
2.3 KiB
HTML
45 lines
2.3 KiB
HTML
{% load static tz core_tags %}
|
|
|
|
<tr>
|
|
<td title="Bookmarked: {{link.bookmarked_date|localtime}} ({{link.timestamp}})" data-sort="{{link.bookmarked_at.timestamp}}">
|
|
{{ link.bookmarked_at|localtime }}
|
|
</td>
|
|
<td class="title-col" style="opacity: {% if link.title %}1{% else %}0.3{% endif %}" title="{{link.title|default:'Not yet archived...'}}">
|
|
{% if link.is_archived %}
|
|
<a href="/archive/{{link.timestamp}}/index.html"><img src="/archive/{{link.timestamp}}/favicon.ico" onerror="this.style.display='none'" class="link-favicon" decoding="async"></a>
|
|
{% else %}
|
|
<a href="/archive/{{link.timestamp}}/index.html"><img src="{% static 'spinner.gif' %}" onerror="this.style.display='none'" class="link-favicon" decoding="async" style="height: 15px"></a>
|
|
{% endif %}
|
|
|
|
<a href="/archive/{{link.timestamp}}/index.html" title="{{link.title|default:'Not yet archived...'}}">
|
|
<span data-title-for="{{link.url}}" data-archived="{{link.is_archived}}">
|
|
{{link.title|default:'Loading...'|truncatechars:128}}
|
|
</span>
|
|
{% if link.tags_str %}
|
|
{% for tag in link.tags_str|split:',' %}
|
|
<span class="tag" style="float: right; border-radius: 5px; background-color: #bfdfff; padding: 2px 5px; margin-left: 4px; margin-top: 1px;">
|
|
{{tag}}
|
|
</span>
|
|
{% endfor %}
|
|
{% endif %}
|
|
</a>
|
|
</td>
|
|
<td>
|
|
<span data-number-for="{{link.url}}" title="Fetching any missing files...">
|
|
{% if link.icons %}
|
|
{{link.icons}} <small style="float:right; opacity: 0.5">{{link.num_outputs}}</small>
|
|
{% else %}
|
|
<a href="/archive/{{link.timestamp}}/index.html">
|
|
📄
|
|
{{link.num_outputs}} <img src="{% static 'spinner.gif' %}" onerror="this.style.display='none'" class="files-spinner" decoding="async" style="height: 15px"/>
|
|
</a>
|
|
{% endif %}
|
|
</span>
|
|
</td>
|
|
<td style="text-align:left; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;" title="{{link.url}}">
|
|
<a href="{{link.url}}">
|
|
{{link.url}}
|
|
</a>
|
|
</td>
|
|
</tr>
|