{% extends "base.html" %} {% block title %}{{ entry.name }}{% endblock %} {% block content %}

{{ entry.name }}

Published by {{ entry.did }}

{% if entry.description %}

{{ entry.description }}

{% endif %} {% if entry.tags %}
{% for tag in entry.tags %} {{ tag }} {% endfor %}
{% endif %}

Details

{% if entry.license %} {% endif %} {% if entry.size %} {% endif %}
AT-URI{{ entry.uri }}
License{{ entry.license }}
Schema{{ entry.schemaRef }}
Size {% if entry.size.samples is defined %}{{ entry.size.samples }} samples{% endif %} {% if entry.size.bytes is defined %}{% if entry.size.samples is defined %}, {% endif %}{{ entry.size.bytes }} bytes{% endif %} {% if entry.size.shards is defined %}{% if entry.size.samples is defined or entry.size.bytes is defined %}, {% endif %}{{ entry.size.shards }} shards{% endif %}
Created{{ entry.createdAt }}
{% if entry.storage %}

Storage

{% if entry.storage.url is defined %} {% endif %}
Type{{ entry.storage.get("$type", "unknown") }}
URL{{ entry.storage.url }}
{% endif %} {% if labels %}

Labels

{% for label in labels %} {% endfor %}
NameVersionDescription
{{ label.name }} {{ label.get("version", "") }} {{ label.get("description", "") }}
{% endif %} {% endblock %}