tabletop-frog/ttfrog/assets/templates/list.html

11 lines
326 B
HTML
Raw Normal View History

2024-02-01 00:28:35 -08:00
{% macro build_list(records) %}
<div style='float:left; min-height: 90%; margin-right:5em;'>
<ul>
<li><a href="/sheet/">Create a Character</a></li>
{% for rec in records %}
<li><a href="/sheet/{{rec['slug']}}/{{rec['name']}}">{{ rec['name'] }}</a></li>
{% endfor %}
</ul>
</div>
{% endmacro %}