at/templates/main.html

15 lines
344 B
HTML

<html>
Recently at <a href="http://www.hackerspace.pl">hackerspace</a>:
<ul>
{% for user, timestamp in users %}
<li>
{% if user.url %}<a href="{{ user.url }}">{% endif %}
{{ user.login }} ({{ timestamp|strfts() }})
{% if user.url %}</a>{% endif %}
</li>
{% endfor %}
</ul>
<hr>
There are {{ unknown|length }} unknown devices operating.
</html>