diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-03-02 18:06:14 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-03-02 18:06:14 -0800 |
commit | 0c4450dfe8b3325ed81f2f24f15ba6e7835d4205 (patch) | |
tree | 6b58cda95496106a795bc11c8f6942fd5cc551e3 /python/fatcat_web | |
parent | 8d7c48f579946b26391c91cc1ccbb8501fe019a6 (diff) | |
download | fatcat-0c4450dfe8b3325ed81f2f24f15ba6e7835d4205.tar.gz fatcat-0c4450dfe8b3325ed81f2f24f15ba6e7835d4205.zip |
collapse extra metadata key column
Diffstat (limited to 'python/fatcat_web')
-rw-r--r-- | python/fatcat_web/templates/entity_macros.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/fatcat_web/templates/entity_macros.html b/python/fatcat_web/templates/entity_macros.html index 054b2559..e13898a2 100644 --- a/python/fatcat_web/templates/entity_macros.html +++ b/python/fatcat_web/templates/entity_macros.html @@ -22,8 +22,8 @@ <table class="ui definition single line fixed compact small unstackable table"> <tbody> {% for (key, value) in extra.items() %} - <tr><td class="three wide right aligned"><code>{{ key }}</code></td> - <td class="seven wide"><code>{{ value }}</code> + <tr><td class="collapsing right aligned"><code>{{ key }}</code></td> + <td class=""><code>{{ value }}</code> {% endfor %} </tbody> </table> |