aboutsummaryrefslogtreecommitdiffstats
path: root/adenosine-pds/templates/at_repo.html
blob: 384b8dc252f3bbbe809d8f9c17991cf0ba00acf3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{% extends "base.html" %}

{% block main %}
<h2>ATP Repository Explorer</h2>
<div class="repo_aturi">at://{{ did }}/</div>

<h4>Collections</h4>
<ul>
{% for collection in describe.collections %}
  <li>/<a href="/at/{{ did }}/{{ collection }}">{{collection}}</a>/
{% endfor %}
</ul>

<h4>Describe</h4>
<pre><code>{{ describe|json }}</code></pre>

<h4>Commit Node</h4>
<pre><code>{{ commit|json }}</code></pre>

{% endblock %}