diff options
Diffstat (limited to 'adenosine-pds/templates/at_collection.html')
-rw-r--r-- | adenosine-pds/templates/at_collection.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/adenosine-pds/templates/at_collection.html b/adenosine-pds/templates/at_collection.html new file mode 100644 index 0000000..b4b7036 --- /dev/null +++ b/adenosine-pds/templates/at_collection.html @@ -0,0 +1,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 %} |