diff options
Diffstat (limited to 'python/fatcat_web/templates/webcapture_view.html')
| -rw-r--r-- | python/fatcat_web/templates/webcapture_view.html | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/python/fatcat_web/templates/webcapture_view.html b/python/fatcat_web/templates/webcapture_view.html index a6c628d9..921d5d48 100644 --- a/python/fatcat_web/templates/webcapture_view.html +++ b/python/fatcat_web/templates/webcapture_view.html @@ -43,7 +43,7 @@            <code><a href="{{ row.url }}">{{ row.url}}</a></code>          </div>          <div style="margin-left: 1em;"> -          {{ row.timestamp }} +          {{ row.timestamp.strftime("%Y-%m-%d %H:%M:%S") }}            {% if row.mimetype %}| {{ row.mimetype }}{% endif %}            <br>            <code><small style="color: #666;"> @@ -72,7 +72,7 @@ No known public archive for this webcapture.  {% if webcapture.timestamp != None %}  <div class="ui segment attached"> -  <p><b>Capture Time</b>  {{ webcapture.timestamp }} +  <p><b>Capture Time</b>  {{ webcapture.timestamp.strftime("%Y-%m-%d %H:%M:%S") }}  </div>  {% endif %} | 
