aboutsummaryrefslogtreecommitdiffstats
path: root/adenosine-pds/templates/at_collection.html
blob: b4b7036cecd0aba9c4326a9898d1f0ea75431d72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{% extends "base.html" %}

{% block main %}
<p><b>at://{{ did }}/{{ collection }}/</b>

<p><b>records:</b>
<ul>
{% for record in records %}
  <li><a href="/at/{{did}}/{{collection}}/{{record["tid"].as_str().unwrap() }}">{{ record["tid"].as_str().unwrap() }}</a>
{% endfor %}
</ul>
{% endblock %}