You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
k4ever/k4ever/main/templates/main/startpage.html

15 lines
306 B

{% extends "base.html" %}
{% block "content" %}
{% if usersMost %}
Am oeftesten hatten alle: <br /> <br />
{% for buyable in usersMost %}
{{ buyable.buyable__name }} ( {{ buyable.num_buys }} mal) <br />
{% endfor %}
<br />
{% else %}
{{ error }}
Nix gekauft?
{% endif %}
{% endblock %}