blob: 670cb0def77630984d95bb9223d41ba22efdf976 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{% extends "base.html" %}
{% block main %}
<h2>ATP Repository Explorer</h2>
<div class="repo_aturi">at://<a href="/at/{{ did }}">{{ did }}</a>/{{ collection }}/</div>
<h4>Records</h4>
<ul>
{% for record in records %}
<li>/{{ collection }}/<a href="/at/{{did}}/{{collection}}/{{record["tid"].as_str().unwrap() }}">{{ record["tid"].as_str().unwrap() }}</a>/
{% endfor %}
</ul>
{% endblock %}
|