mirror of
https://github.com/Lost-MSth/Arcaea-server.git
synced 2026-02-04 13:17:27 +08:00
Please wait for some time. I need to change readme. I almost forgot what I changed before. WARNING: There will be many bugs!
33 lines
579 B
HTML
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 %} |