[webpages] Add autotagging to webpages
All checks were successful
build / test (push) Successful in 1m59s

This commit is contained in:
2026-06-18 10:43:21 -04:00
parent 0f1882b21f
commit 6fde9ec8d2
9 changed files with 137 additions and 1 deletions

View File

@ -204,6 +204,13 @@
<p>Source: <a href="{{object.url}}">{{object.domain}}</a></p>
{% if object.date %}<p>Published: <em>{{object.date}}</em></p>{% endif %}
<p>Time to read: {{object.estimated_time_to_read_in_minutes}} minutes</p>
{% if object.tags.all %}
<p>Tags:
{% for tag in object.tags.all %}
<a href="{% url 'webpages:webpage_list' %}?tag={{ tag.name|urlencode }}">{{ tag.name }}</a>{% if not forloop.last %}, {% endif %}
{% endfor %}
</p>
{% endif %}
</div>
{% if object.extract %}
<div class="col">