1 2 3 4 5 6 7 8 9 10 11 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 %}