aboutsummaryrefslogtreecommitdiffstats
path: root/adenosine-pds/templates/at_repo.html
blob: 7da500706e3e7982d2e97ee36765bdf44384578e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{% 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>export</h4>
<a href="/xrpc/com.atproto.sync.getRepo?did={{ did }}" download="{{ did }}.car" class="pink">[repo.car]</a>

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

<h4>commit node</h4>
<pre><code>{{ commit.to_pretty_json()|json }}</code></pre>

{% endblock %}