linkding icon indicating copy to clipboard operation
linkding copied to clipboard

Option to show URL at all times in default view

Open onjour opened this issue 3 years ago • 3 comments

I'd love to be able to see the full URL of the bookmarks in the default view.

Sometimes the web title isn't informative enough and having the URL as well helps to find the information.

Thanks

onjour avatar Jun 10 '21 10:06 onjour

OMG…esp. in the list of search result. I have no idea what a title is as its “source” without seeing a URL. LinkAce shows that info. Very helpful.

soundneedle avatar Feb 16 '22 06:02 soundneedle

+1 for this

gingerbeardman avatar Feb 22 '22 12:02 gingerbeardman

by no means a permanent solution, or the best approach, but I edited a file on my own installation to add this...

https://github.com/sissbruecker/linkding/blob/b93a9fadb637bfb132583836c046887e3f70dd87/bookmarks/templates/bookmarks/bookmark_list.html#L11-L15

becomes:

<div class="title truncate">
    <a href="{{ bookmark.url }}" target="{{ link_target }}" rel="noopener">{{ bookmark.resolved_title }}</a>
</div>
<div class="description truncate">
    <span>                                                                                                                          
    <a href="{{ bookmark.url }}" target="{{ link_target }}" rel="noopener" class="text-gray text-sm">{{ bookmark.url }}</a><br>                               
    </span>                                                                                                                         
    {% if bookmark.tag_names %}

and looks like this:

Screenshot 2022-02-22 at 13 42 35

gingerbeardman avatar Feb 22 '22 13:02 gingerbeardman

was there ever a merge request for this @gingerbeardman @clach04 @sissbruecker ?

sebw avatar Dec 12 '22 08:12 sebw

was there ever a merge request for this @gingerbeardman @clach04 @sissbruecker ?

https://github.com/sissbruecker/linkding/pull/219

clach04 avatar Dec 12 '22 13:12 clach04

Solved as part of https://github.com/sissbruecker/linkding/pull/365

sissbruecker avatar May 18 '23 08:05 sissbruecker