mirror of
https://github.com/sissbruecker/linkding.git
synced 2025-08-09 19:57:49 +02:00
Add reader mode (#703)
* Add reader mode view * Show link for latest snapshot instead
This commit is contained in:
@@ -346,6 +346,7 @@ class BookmarkAssetItem:
|
||||
|
||||
self.id = asset.id
|
||||
self.display_name = asset.display_name
|
||||
self.asset_type = asset.asset_type
|
||||
self.content_type = asset.content_type
|
||||
self.file = asset.file
|
||||
self.file_size = asset.file_size
|
||||
@@ -393,3 +394,12 @@ class BookmarkDetailsContext:
|
||||
self.has_pending_assets = any(
|
||||
asset.status == BookmarkAsset.STATUS_PENDING for asset in self.assets
|
||||
)
|
||||
self.latest_snapshot = next(
|
||||
(
|
||||
asset
|
||||
for asset in self.assets
|
||||
if asset.asset.asset_type == BookmarkAsset.TYPE_SNAPSHOT
|
||||
and asset.status == BookmarkAsset.STATUS_COMPLETE
|
||||
),
|
||||
None,
|
||||
)
|
||||
|
Reference in New Issue
Block a user