blob: f49d90b75da2588a842ac96f7939f7b9df874cc1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
{% 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>
<a href="{{ user | wikiurl }}">
{{ user }} ({{ timestamp|strfts() }})
</a>
</li>
{% endfor %}
</ul>
{% trans n_unk=unknown|length %}
There is {{ n_unk }} unknown device operating.
{% pluralize %}
There are {{ n_unk }} unknown devices operating.
{% endtrans %}
{% trans n_kek=kektops|length %}
There is {{ n_kek }} unknown kektop operating.
{% pluralize %}
There are {{ n_kek }} unknown kektops operating.
{% endtrans %}
<hr>
<a href="claim">Claim this device!</a>
{% endblock %}
|