blob: a7363a66a3f1eb3a3981410cb8420e2e48c9e6f3 (
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 %}
|