diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-04-09 13:07:05 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-04-09 13:07:05 -0700 |
commit | ff4d9cf06955aaa21a429ff10456468e1fae84fc (patch) | |
tree | 9078e548422ccc99dac54967609031f424448f00 /python/fatcat_web/templates/webcapture_view.html | |
parent | e7229e06bd8af4e97f5a5494e89ee66fbdb607ee (diff) | |
download | fatcat-ff4d9cf06955aaa21a429ff10456468e1fae84fc.tar.gz fatcat-ff4d9cf06955aaa21a429ff10456468e1fae84fc.zip |
have webcapture wayback links go right to capture (not calendar)
Diffstat (limited to 'python/fatcat_web/templates/webcapture_view.html')
-rw-r--r-- | python/fatcat_web/templates/webcapture_view.html | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/python/fatcat_web/templates/webcapture_view.html b/python/fatcat_web/templates/webcapture_view.html index 921d5d48..ee28cdf9 100644 --- a/python/fatcat_web/templates/webcapture_view.html +++ b/python/fatcat_web/templates/webcapture_view.html @@ -32,6 +32,14 @@ This Web Capture is not associated with any fatcat release. {% endif %} +<br> +<h3>Archive URLs</h3> +{% if webcapture.archive_urls != None %} + {{ entity_macros.url_list(webcapture.archive_urls, webcapture.wayback_suffix) }} +{% else %} +No known public archive for this webcapture. +{% endif %} + <h3>CDX Rows ({{ webcapture.cdx|count }})</h3> {% if webcapture.cdx %} @@ -56,15 +64,7 @@ {% endfor %} </div> {% else %} -This File Set is empty (contains no files). -{% endif %} - -<br> -<h3>Archive URLs</h3> -{% if webcapture.archive_urls != None %} - {{ entity_macros.url_list(webcapture.archive_urls) }} -{% else %} -No known public archive for this webcapture. +This web capture is empty (contains no resources). {% endif %} </div> |