blob: 198b4d0e98aaa04913383da973f008dc14bfd740 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{% extends "basic.html" %}
{% block title %}
Now at hackerspace
{% endblock %}
{% block content %}
<h2>Now at hackerspace!</h2>
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.
<a href="claim">Claim this device!</a>
{% endblock %}
|