diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-06-13 17:17:22 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-06-13 17:17:22 -0700 |
commit | 16126c5901c435ea6610eff8b7211226c6f125d5 (patch) | |
tree | 429a4772a4990e8158f0dbc9714b02c8b0412f07 /python/fatcat_web/templates/fileset_view.html | |
parent | f1abe85e8c35a23122f65b47dd55d8135239cf93 (diff) | |
download | fatcat-16126c5901c435ea6610eff8b7211226c6f125d5.tar.gz fatcat-16126c5901c435ea6610eff8b7211226c6f125d5.zip |
refactor all entities to new UI style
Diffstat (limited to 'python/fatcat_web/templates/fileset_view.html')
-rw-r--r-- | python/fatcat_web/templates/fileset_view.html | 24 |
1 files changed, 5 insertions, 19 deletions
diff --git a/python/fatcat_web/templates/fileset_view.html b/python/fatcat_web/templates/fileset_view.html index 7bc46d45..27d5b6da 100644 --- a/python/fatcat_web/templates/fileset_view.html +++ b/python/fatcat_web/templates/fileset_view.html @@ -1,25 +1,12 @@ {% set fileset = entity %} +{% set entity_view = "overview" %} {% import "entity_macros.html" as entity_macros %} -{% extends "base.html" %} +{% extends "entity_base.html" %} -{% block fullbody %} +{% block entity_main %} <div class="ui stackable mobile reversed grid centered"> -<div class="one wide column"></div> -<div class="fifteen wide column"> - <h1 class="ui header"> - <span class="sub header"><code>fileset {{ entity.ident }}</code></span></h1> -</div> -</div> - -<div class="ui stackable mobile reversed grid centered"> -<div class="one wide column"></div> -<div class="ten wide column" style="font-size: 16px;"> - -{% if entity.extra %} - <h3>Extra Metadata (raw JSON)</h3> - {{ entity_macros.extra_metadata(entity.extra) }} -{% endif %} +<div class="column" style="font-size: 16px; flex: 1;"> <h3>Releases</h3> {% if entity.releases != [] %} @@ -62,7 +49,7 @@ No known public URL, mirror, or archive for this File Set. {% endif %} </div> -<div class="five wide column"> +<div class="column" style="flex: 0 0 24em;"> {% if fileset._total_size != None %} <div class="ui segment attached"> @@ -75,5 +62,4 @@ No known public URL, mirror, or archive for this File Set. </div> </div> - {% endblock %} |