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

11 lines
342 B
HTML
Raw Normal View History

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