diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-05-13 18:24:00 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-05-13 18:24:00 -0700 |
commit | db451c8c1733c8a209aa9144ffdf7bf8de57c1f1 (patch) | |
tree | 25d978d040ad350755a9631f60364967e1069eab /python/fatcat_web | |
parent | b6c6465091a6f5484782fe8c90690d147b4e2296 (diff) | |
download | fatcat-db451c8c1733c8a209aa9144ffdf7bf8de57c1f1.tar.gz fatcat-db451c8c1733c8a209aa9144ffdf7bf8de57c1f1.zip |
python: impl size_bytes -> size
Diffstat (limited to 'python/fatcat_web')
-rw-r--r-- | python/fatcat_web/templates/webcapture_view.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/fatcat_web/templates/webcapture_view.html b/python/fatcat_web/templates/webcapture_view.html index 7593dd3f..9020bf63 100644 --- a/python/fatcat_web/templates/webcapture_view.html +++ b/python/fatcat_web/templates/webcapture_view.html @@ -54,7 +54,7 @@ No known public archive for this webcapture. <div style="margin-left: 1em;"> {{ row.timestamp.strftime("%Y-%m-%d %H:%M:%S") }} {% if row.mimetype %}| {{ row.mimetype }} {% endif %} - {% if row.size_bytes %}| {{ row.size_bytes|filesizeformat }} {% endif %} + {% if row.size %}| {{ row.size|filesizeformat }} {% endif %} <br> <code><small style="color: #666;"> {% if row.sha1 %}sha1:{{ row.sha1 }}<br>{% endif %} |