aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2024-05-29 17:12:20 +0300
committerGravatar Vitaly Takmazov2024-05-29 17:12:20 +0300
commitd6670eb2cd789f1c7191f460226e4a5f07759e5d (patch)
tree50d7fcde664a1551d9752426dc5c5d192eceefa0 /src/main/resources
parentf99dad55bc2b2c0dc4ada8769b9630860fb1b2e8 (diff)
web: dim uri part from external recommendations
Diffstat (limited to 'src/main/resources')
-rw-r--r--src/main/resources/templates/views/thread.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/resources/templates/views/thread.html b/src/main/resources/templates/views/thread.html
index 9aad1ce5..ab751294 100644
--- a/src/main/resources/templates/views/thread.html
+++ b/src/main/resources/templates/views/thread.html
@@ -116,7 +116,7 @@
{% if rec.uri.toString() is empty %}
<a href="/{{ rec.name }}/">@{{ rec.name }}</a>{% if loop.index < (loop.length - 1) %}, {% endif %}
{% else %}
- <a href="{{ rec.uri }}">@{{ rec.name }}</a>{% if loop.index < (loop.length - 1) %}, {% endif %}
+ <a href="{{ rec.uri }}">@{{ rec.name }}<span class="dimmed">@{{ rec.uri.host }}</span></a>{% if loop.index < (loop.length - 1) %}, {% endif %}
{% endif %}
{% endfor %}
</div>