{% extends "skeleton.html" %} {% block page_title %}Blobstore Viewer{% endblock %} {% block page_head %} {% endblock %} {% macro paginator(previous, next) %}

{% if previous is not none %} « previous {% endif %} {% if next is not none %} next » {% endif %}

{% endmacro %} {% block body %}

Blobstore Viewer

{{ paginator(previous, next) }}
{% for blob_info in blob_infos %} {% endfor %}
Key MD5 Size (bytes) Content Type Filename Created
{{blob_info.key()|string|truncate(10, True)}} {{ blob_info.md5_hash}} {{ blob_info.size}} {{ blob_info.content_type}} {{ blob_info.filename}} {{ blob_info.creation}}

{{ paginator(previous, next) }}
{% endblock %}