diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2020-03-26 17:33:01 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2020-03-26 17:33:01 -0700 |
commit | 91c6e7e638a0059549c0af638995e90fad81a2ed (patch) | |
tree | b6da5bc8c76c8ddaeb274be8186369cf534291ff /python | |
parent | 430d0a11c7470dc9a53df5db208de701b9f82110 (diff) | |
download | fatcat-91c6e7e638a0059549c0af638995e90fad81a2ed.tar.gz fatcat-91c6e7e638a0059549c0af638995e90fad81a2ed.zip |
web: display container original titles
Diffstat (limited to 'python')
-rw-r--r-- | python/fatcat_web/templates/entity_base.html | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/python/fatcat_web/templates/entity_base.html b/python/fatcat_web/templates/entity_base.html index 437bc071..189d52b0 100644 --- a/python/fatcat_web/templates/entity_base.html +++ b/python/fatcat_web/templates/entity_base.html @@ -26,6 +26,9 @@ <h1 class="ui header"> {% if entity_type == "container" %} {{ entity.name }} + {% if entity.extra.original_title %} + <br><span style="font-size: smaller; font-weight: normal;">{{ entity.extra.original_title }}</span> + {% endif %} {% elif entity_type == "creator" %} {{ entity.display_name }} {% elif entity_type == "file" %} |