diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2021-07-23 11:56:42 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2021-07-23 11:56:42 -0700 |
commit | 7489ef7a979574effa74f1f17cebb81eefb1b71a (patch) | |
tree | 252bc76358fb769aa52305d45e449c547a740f33 /python/fatcat_web/templates/entity_base.html | |
parent | 0d17bad63b2d92220b8ddaeb9b5733b2b09f57a0 (diff) | |
download | fatcat-7489ef7a979574effa74f1f17cebb81eefb1b71a.tar.gz fatcat-7489ef7a979574effa74f1f17cebb81eefb1b71a.zip |
refs: refactor web paths; enrich refs as generic; remove old refs link
Diffstat (limited to 'python/fatcat_web/templates/entity_base.html')
-rw-r--r-- | python/fatcat_web/templates/entity_base.html | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/python/fatcat_web/templates/entity_base.html b/python/fatcat_web/templates/entity_base.html index c23dbef2..78a151a0 100644 --- a/python/fatcat_web/templates/entity_base.html +++ b/python/fatcat_web/templates/entity_base.html @@ -85,10 +85,9 @@ {{ entity_tab("coverage", "Coverage", "/coverage") }} {% elif entity_type == "release" and entity.state != 'deleted' %} {{ entity_tab("contribs", "Authors", "/contribs", entity._authors|count ) }} - {{ entity_tab("references", "References", "/references", entity.refs|count) }} {% if entity.state == 'active' %} - {{ entity_tab("inbound-refs", "Inbound", "/inbound-refs") }} - {{ entity_tab("outbound-refs", "Outbound", "/outbound-refs") }} + {{ entity_tab("refs-out", "References", "/refs/out") }} + {{ entity_tab("refs-in", "Cited By", "/refs/in") }} {% endif %} {% endif %} {{ entity_tab("metadata", "Metadata", "/metadata") }} |