aboutsummaryrefslogtreecommitdiffstats
path: root/adenosine-pds/templates/at_repo.html
blob: cc45930aad5ce7f3f31578288d07e9801db50ace (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.to_pretty_json()|json }}</code></pre>

{% endblock %}