Files
runnerspace/templates/layouts/index.html
2022-03-27 11:18:46 -05:00

13 lines
498 B
HTML

{% extends 'layouts/base.html' %}
{% block content %}
<h2>New Users</h2>
<div style="border: 1px solid grey; padding: 0.2em; width: fit-content; padding-right: 1.2em;">
<ul>
{% for new_user in new_users %}
<li><a href="{{ url_for('main.user', username=new_user.username) }}" style="text-decoration: none">{{ new_user.username }}</a> as of {{ new_user.get_registration_delta() }} ago</li>
{% endfor %}
</ul>
</div>
{% endblock %}