diff options
-rw-r--r-- | python/fatcat_tools/importers/journal_metadata.py | 2 | ||||
-rw-r--r-- | python/fatcat_web/templates/container_view.html | 6 |
2 files changed, 0 insertions, 8 deletions
diff --git a/python/fatcat_tools/importers/journal_metadata.py b/python/fatcat_tools/importers/journal_metadata.py index aa75ad5b..cd058889 100644 --- a/python/fatcat_tools/importers/journal_metadata.py +++ b/python/fatcat_tools/importers/journal_metadata.py @@ -69,8 +69,6 @@ class JournalMetadataImporter(FatcatImporter): issnl=issnl, name=title, publisher=or_none(row['publisher']), - abbrev=None, - coden=None, extra=extra) return ce diff --git a/python/fatcat_web/templates/container_view.html b/python/fatcat_web/templates/container_view.html index 29f0b9d9..4a175a5d 100644 --- a/python/fatcat_web/templates/container_view.html +++ b/python/fatcat_web/templates/container_view.html @@ -15,12 +15,6 @@ <p><b>Publisher:</b> {% if container.publisher != None %}{{ container.publisher }}{% else %}<i>Unknown</i>{% endif %} -{% if container.coden != None %} -<br><b>CODEN<sup><a href="https://en.wikipedia.org/wiki/CODEN">?</a></sup>:</b> <code>{{ container.coden }}</code> -{% endif %} -{% if container.abbrev != None %} -<br><b>Abbrev.:</b> <code>{{ container.abbrev }}</code> -{% endif %} {% if (container.extra != None) and (container.extra['url'] != None) and (container.extra['url']|length > 0) %} <br><b>Homepage:</b> <a href="{{ container.extra['url'] }}"> <code>{{ container.extra['url'] }}</code></a> {% endif %} |