diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-03-19 23:01:21 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-03-19 23:01:21 -0700 |
commit | 791c4fba327eadcd676b53769d84db1026661ddf (patch) | |
tree | da9d92f874371de0c9ab080465cbbe9494cc00f3 /python/fatcat_web/templates/entity_macros.html | |
parent | 1f6ef062c2aa8cd2b666a14d1906ccc26369b8ed (diff) | |
download | fatcat-791c4fba327eadcd676b53769d84db1026661ddf.tar.gz fatcat-791c4fba327eadcd676b53769d84db1026661ddf.zip |
improve url/table rendering for dweb URLs
Diffstat (limited to 'python/fatcat_web/templates/entity_macros.html')
-rw-r--r-- | python/fatcat_web/templates/entity_macros.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/fatcat_web/templates/entity_macros.html b/python/fatcat_web/templates/entity_macros.html index 13e2d305..3e83b9d4 100644 --- a/python/fatcat_web/templates/entity_macros.html +++ b/python/fatcat_web/templates/entity_macros.html @@ -72,7 +72,7 @@ {% for url in urls %} <tr><td class="two wide right aligned">{{ url.rel }} <td class="eight wide"><small><code><a href="{{ url.url }}"> - {% if url.url.count('/') >= 3 %} + {% if url.url.count('/') >= 3 and url.rel != "dweb" %} {{ '/'.join(url.url.split('/')[0:2]) }}/<b>{{ ''.join(url.url.split('/')[2]) }}</b>/{{ '/'.join(url.url.split('/')[3:]) }} {% else %} {{ url.url }} |