endorsement/templates/allusers.html

12 lines
388 B
HTML
Raw Normal View History

2018-07-17 08:04:57 +00:00
<html>
<body>
<h2>Insert cool name here</h2>
<ul>
{% for user in data -%}
<li>
<a href="{{url_for('get_user', id=user.id)}}">{{ user.id }}</a>: {{ user.achievements|length }} achievement{{ "s" if (user.achievements|length != 1) else "" }}
</li>
{% endfor -%}
</ul>
</body>
</html>