diff options
author | bnewbold <bnewbold@archive.org> | 2022-03-10 00:08:11 +0000 |
---|---|---|
committer | bnewbold <bnewbold@archive.org> | 2022-03-10 00:08:11 +0000 |
commit | e4cbe43692a9c26911ea54ee88d7df0980e1d9fe (patch) | |
tree | 66090d73714ed043bf6eec608aebe136704320c7 /python/fatcat_web/templates/entity_base.html | |
parent | 72e3825893ae614fcd6c6ae8a513745bfefe36b2 (diff) | |
parent | f9b69d0b4343403ecf9318dc6d66725f6144edad (diff) | |
download | fatcat-e4cbe43692a9c26911ea54ee88d7df0980e1d9fe.tar.gz fatcat-e4cbe43692a9c26911ea54ee88d7df0980e1d9fe.zip |
Merge branch 'bnewbold-container-web' into 'master'
container web interface improvements
See merge request webgroup/fatcat!140
Diffstat (limited to 'python/fatcat_web/templates/entity_base.html')
-rw-r--r-- | python/fatcat_web/templates/entity_base.html | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/python/fatcat_web/templates/entity_base.html b/python/fatcat_web/templates/entity_base.html index c3d6096b..626c102a 100644 --- a/python/fatcat_web/templates/entity_base.html +++ b/python/fatcat_web/templates/entity_base.html @@ -75,6 +75,10 @@ {% endif %} <br> {% endif %} + {% elif entity_type == "container" %} + {% if entity.publisher %} + <p style="font-size: larger;">{{ entity.publisher }} + {% endif %} {% endif %} <!-- these nested div make tabs scrollable on mobile --> <div class="ui container" style="min-width: 100%; overflow-x: auto;"> @@ -82,7 +86,9 @@ <div class="ui small tabular compact menu"> {{ entity_tab("overview", "Overview", "") }} {% if entity_type == "container" and entity.state == 'active' and not editgroup %} + {{ entity_tab("browse", "Browse", "/browse") }} {{ entity_tab("coverage", "Preservation", "/coverage") }} + {{ entity_tab("search", "Search", "/search") }} {% elif entity_type == "release" and entity.state != 'deleted' %} {{ entity_tab("contribs", "Authors", "/contribs", entity._authors|count ) }} {% if entity.state == 'active' %} |