| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- {% 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="{% web_base_url %}/{{link.archive_path}}/index.html"><img src="{% snapshot_url link 'favicon.ico' %}" onerror="this.style.display='none'" class="link-favicon" decoding="async"></a>
- {% else %}
- <a href="{% web_base_url %}/{{link.archive_path}}/index.html"><img src="{% static 'spinner.gif' %}" onerror="this.style.display='none'" class="link-favicon" decoding="async" style="height: 15px"></a>
- {% endif %}
- <a href="{% web_base_url %}/{{link.archive_path}}/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="{% web_base_url %}/{{link.archive_path}}/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>
|