1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-24 12:04:20 +00:00
royalnet/templates/minis/halloween.html

20 lines
639 B
HTML
Raw Normal View History

2018-10-02 22:24:05 +00:00
<div class="game-panel">
<div class="game-grid halloweenmini">
<div class="player">
2018-10-07 15:19:42 +00:00
<span class="player-name">{{ record.royal.username }}</span>
2018-10-02 22:24:05 +00:00
</div>
2018-10-07 15:19:42 +00:00
<div class="game-title mysterystatus">
2019-01-03 11:32:59 +00:00
Lune ottenute ad Halloween 2018
2018-10-02 22:24:05 +00:00
</div>
2018-10-07 15:19:42 +00:00
<div class="game-score mysterystatus">
2018-10-07 19:26:53 +00:00
{% for index in range(7) %}
2018-10-07 15:19:42 +00:00
{% if record[index + 1] %}
<i class="fas fa-moon done"></i>
2018-10-03 17:43:56 +00:00
{% else %}
2018-10-07 15:19:42 +00:00
<i class="far fa-moon todo"></i>
2018-10-03 17:43:56 +00:00
{% endif %}
2018-10-02 22:24:05 +00:00
{% endfor %}
</div>
</div>
</div>