diff options
Diffstat (limited to 'at/templates/main.html')
-rw-r--r-- | at/templates/main.html | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/at/templates/main.html b/at/templates/main.html new file mode 100644 index 0000000..3ac5c50 --- /dev/null +++ b/at/templates/main.html @@ -0,0 +1,34 @@ +{% 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 %} + {% trans n_esp=esps|length %} + There is {{ n_esp }} unknown ESP operating. + {% pluralize %} + There are {{ n_esp }} unknown ESPs operating. + {% endtrans %} + <hr> + <a href="claim">Claim this device!</a> +{% endblock %} |