diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-03-02 18:02:58 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-03-02 18:02:58 -0800 |
commit | 1db7aac96c05ed03e6b94d174b3591cedb812d83 (patch) | |
tree | 2a7dfdaaf54f4541c7fee500b99eedf4b4242bdb /python/fatcat_web/templates/release_view.html | |
parent | 85be78efeadfccf1f12974b8aef6431dae44c34a (diff) | |
download | fatcat-1db7aac96c05ed03e6b94d174b3591cedb812d83.tar.gz fatcat-1db7aac96c05ed03e6b94d174b3591cedb812d83.zip |
revert reference list <ol> changes
Diffstat (limited to 'python/fatcat_web/templates/release_view.html')
-rw-r--r-- | python/fatcat_web/templates/release_view.html | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/python/fatcat_web/templates/release_view.html b/python/fatcat_web/templates/release_view.html index 805fb176..ad2daeb2 100644 --- a/python/fatcat_web/templates/release_view.html +++ b/python/fatcat_web/templates/release_view.html @@ -210,9 +210,10 @@ {% if release.refs != None and release.refs.size != 0 %} <h3>References</h3> <i>This release citing other releases</i> -<ol class="ui list"> +{# see https://github.com/Semantic-Org/Semantic-UI/issues/2639 #} +<ol> {% for ref in release.refs %} - <li {% if ref.key %}value="{{ ref.key }}"{% endif %}> + <li> {% if ref.title %} {{ ref.title }} {% if ref.container_name %}{{ ref.container_name }}.{% endif %} |