{% 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
| AT-URI | {{ entry.uri }} |
{% if entry.license %}
| License | {{ entry.license }} |
{% endif %}
| Schema | {{ entry.schemaRef }} |
{% if entry.size %}
| 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 %}
|
{% endif %}
| Created | {{ entry.createdAt }} |
{% if entry.storage %}
Storage
| Type | {{ entry.storage.get("$type", "unknown") }} |
{% if entry.storage.url is defined %}
| URL | {{ entry.storage.url }} |
{% endif %}
{% endif %}
{% if labels %}
Labels
| Name | Version | Description |
{% for label in labels %}
| {{ label.name }} |
{{ label.get("version", "") }} |
{{ label.get("description", "") }} |
{% endfor %}
{% endif %}
{% endblock %}