Files
Arcaea-server/latest version/templates/web/allitem.html
Lost-MSth 3fbf473de2 Ready to update to v2.5
Please wait for some time. I need to change readme. I almost forgot what I changed before.
WARNING: There will be many bugs!
2021-06-10 19:01:26 +08:00

33 lines
579 B
HTML

{% extends 'base.html' %}
{% block header %}
<h1>{% block title %}All items{% endblock %}</h1>
{% endblock %}
{% block content %}
{% if posts %}<br />
{% for item in posts %}
<div class="char-item">
<span>Id: </span>
<span class="name">{{item['item_id']}}</span>
<br />
<span>Type: </span>
<span class="char-num">{{item['type']}}</span>
<br />
<span>Is available: </span>
<span class="char-num">{{item['is_available']}}</span>
<br />
</div>
{% if not loop.last %}
<br />
<hr />
<br />
{% endif %}
{% endfor %}
{% endif %}
{% endblock %}