diff options
Diffstat (limited to 'python/fatcat_web/templates/container_view.html')
-rw-r--r-- | python/fatcat_web/templates/container_view.html | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/python/fatcat_web/templates/container_view.html b/python/fatcat_web/templates/container_view.html index c8f51f5f..677a295e 100644 --- a/python/fatcat_web/templates/container_view.html +++ b/python/fatcat_web/templates/container_view.html @@ -37,18 +37,12 @@ </form> {% endif %} -{% if container.extra %} -<h3>Extra Metadata (raw JSON)</h3> -<table class="ui definition single line fixed compact small unstackable table"> -<tbody> -{% for (key, value) in container.extra.items() %} - <tr><td class="three wide right aligned"><code>{{ key }}</code></td> - <td class="seven wide"><code>{{ value }}</code> -{% endfor %} -</tbody> -</table> + +{% if entity.extra %} + {{ entity_macros.extra_metadata(entity.extra) }} {% endif %} + </div> <div class="five wide column"> <div class="ui segment top attached"> |