diff options
author | Martin Czygan <martin@archive.org> | 2020-06-05 11:23:29 +0000 |
---|---|---|
committer | Martin Czygan <martin@archive.org> | 2020-06-05 11:23:29 +0000 |
commit | 9dca5a8348f2ab34a013b25f3dae07c1f8db2c19 (patch) | |
tree | 41b1f6094714f8dd1b1b8e54028e1a32202205f4 /python/fatcat_web/templates/release_view.html | |
parent | 394433ff5e0aba301f2f26e03095079e0ca974ca (diff) | |
parent | 2f233a3b8c00385d4b215361a0fa09f93a05f8d9 (diff) | |
download | fatcat-9dca5a8348f2ab34a013b25f3dae07c1f8db2c19.tar.gz fatcat-9dca5a8348f2ab34a013b25f3dae07c1f8db2c19.zip |
Merge branch 'bnewbold-better-button-links' into 'master'
better download button links
See merge request webgroup/fatcat!57
Diffstat (limited to 'python/fatcat_web/templates/release_view.html')
-rw-r--r-- | python/fatcat_web/templates/release_view.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/fatcat_web/templates/release_view.html b/python/fatcat_web/templates/release_view.html index 60e4624e..2aba47ba 100644 --- a/python/fatcat_web/templates/release_view.html +++ b/python/fatcat_web/templates/release_view.html @@ -253,8 +253,8 @@ accessible version. </div> <div class="column" style="flex: 0 0 24em;"> -{% if entity.state == 'active' and entity.files != [] and entity.files[0].urls != [] %} -<a href="{{ entity.files[0].urls[0].url }}" class="ui top attached fluid huge green button"><i class="file pdf outline icon"></i>Read Full Text</a> +{% if entity.state == 'active' and entity._es and entity._es.best_pdf_url %} +<a href="{{ entity._es.best_pdf_url }}" class="ui top attached fluid huge green button"><i class="file pdf outline icon"></i>Read Full Text</a> {% elif entity.state == 'active' and entity.webcaptures != [] and entity.webcaptures[0].archive_urls != [] and entity.webcaptures[0].archive_urls[0].rel == "wayback" %} <a href="{{ entity.webcaptures[0].archive_urls[0].url }}{{ entity.webcaptures[0]._wayback_suffix }}" class="ui top attached fluid huge green button"><i class="file archive outline icon"></i>View Web Archive</a> {% elif entity.state == 'active' %} |