diff options
Diffstat (limited to 'adenosine-pds/templates/at_repo.html')
-rw-r--r-- | adenosine-pds/templates/at_repo.html | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/adenosine-pds/templates/at_repo.html b/adenosine-pds/templates/at_repo.html new file mode 100644 index 0000000..dcf4d87 --- /dev/null +++ b/adenosine-pds/templates/at_repo.html @@ -0,0 +1,18 @@ +{% extends "base.html" %} + +{% block main %} +<p><b>at://{{ did }}/</b> + +<p><b>collections:</b> +<ul> +{% for collection in describe.collections %} + <li><a href="/at/{{ did }}/{{ collection }}">{{collection}}/</a> +{% endfor %} +</ul> + +<p>repo commit: +<pre><code>{{ "{:?}"|format(commit) }}</code></pre> + +<p>repo describe +<pre><code>{{ "{:?}"|format(describe) }}</code></pre> +{% endblock %} |