diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2020-04-23 17:22:22 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2020-04-23 17:31:18 -0700 |
commit | 149140e2b9f66f389299914c058c648d8bba8120 (patch) | |
tree | 4ffb2ac7677ac349f54dd9816bddac5b15ff3901 /python/fatcat_web/templates/entity_macros.html | |
parent | e749b576bdb9bbec3bcef7e4e389e7fbbf916c84 (diff) | |
download | fatcat-149140e2b9f66f389299914c058c648d8bba8120.tar.gz fatcat-149140e2b9f66f389299914c058c648d8bba8120.zip |
web: fix ident=None broken links
On web interface views for revisions, we had a bunch of broken links
because the ident is "None". This commit fixes these by removing the
links.
Diffstat (limited to 'python/fatcat_web/templates/entity_macros.html')
-rw-r--r-- | python/fatcat_web/templates/entity_macros.html | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/python/fatcat_web/templates/entity_macros.html b/python/fatcat_web/templates/entity_macros.html index 7c5436c6..3308a3d5 100644 --- a/python/fatcat_web/templates/entity_macros.html +++ b/python/fatcat_web/templates/entity_macros.html @@ -54,10 +54,12 @@ </a> </div> +{% if entity.ident %} <div class="two ui buttons bottom attached"> <a href="{% if editgroup %}/editgroup/{{ editgroup.editgroup_id }}{% endif %}/{{ entity_type }}/{{ entity.ident }}/edit" class="ui blue button">Edit Metadata</a> <a href="/{{ entity_type }}/{{ entity.ident }}/history" class="ui button">View History</a> </div> +{% endif %} {%- endmacro %} |