diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2018-10-02 18:28:02 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2018-10-02 18:28:02 -0700 |
commit | edcd8eaa6282fda00a0e37f4c82a96e2b2f1b0fa (patch) | |
tree | a492ab264ab8c3b1efb365b924565b32010114f2 | |
parent | 0988735a4f0f37a75964e803a443793bf51dc2b2 (diff) | |
download | fatcat-edcd8eaa6282fda00a0e37f4c82a96e2b2f1b0fa.tar.gz fatcat-edcd8eaa6282fda00a0e37f4c82a96e2b2f1b0fa.zip |
fix release type/status typo on release pages
-rw-r--r-- | python/fatcat/templates/release_view.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/fatcat/templates/release_view.html b/python/fatcat/templates/release_view.html index c86eac75..4c85c11c 100644 --- a/python/fatcat/templates/release_view.html +++ b/python/fatcat/templates/release_view.html @@ -35,7 +35,7 @@ {% if release.language != None %} <br><b>Primary Language:</b> <code>{{ release.language }}</code> (<a href="https://www.loc.gov/standards/iso639-2/php/langcodes_name.php?iso_639_1={{ release.language }}">lookup ISO-639 code</a>) {% endif %} -<br>This <i>{{ release.release_status or "unknown-type" }}</i> is a release +<br>This <i>{{ release.release_type or "unknown-type" }}</i> is a release (version) of the work <a href="/work/{{ release.work_id }}"> <code>{{ release.work_id }}</code></a>. There may be other releases (eg, pre-prints, formal publications, etc) linked to the same work. |