diff options
author | Vitaly Takmazov | 2024-05-29 17:12:20 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2024-05-29 17:12:20 +0300 |
commit | d6670eb2cd789f1c7191f460226e4a5f07759e5d (patch) | |
tree | 50d7fcde664a1551d9752426dc5c5d192eceefa0 /src/main/resources/templates | |
parent | f99dad55bc2b2c0dc4ada8769b9630860fb1b2e8 (diff) |
web: dim uri part from external recommendations
Diffstat (limited to 'src/main/resources/templates')
-rw-r--r-- | src/main/resources/templates/views/thread.html | 2 |
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> |