mirror of
https://github.com/Lost-MSth/Arcaea-server.git
synced 2026-02-08 08:47:32 +08:00
Update to v1.9
This commit is contained in:
37
latest version/templates/web/allpresent.html
Normal file
37
latest version/templates/web/allpresent.html
Normal file
@@ -0,0 +1,37 @@
|
||||
{% extends 'base.html' %}
|
||||
{% block header %}
|
||||
<h1>{% block title %}All presents{% endblock %}</h1>
|
||||
{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
{% if posts %}<br />
|
||||
{% for present in posts %}
|
||||
|
||||
<div class="char-present">
|
||||
<span>Id: </span>
|
||||
<span class="name">{{present['present_id']}}</span>
|
||||
<br />
|
||||
|
||||
<span>Expire time: </span>
|
||||
<span class="char-num">{{present['expire_ts']}}</span>
|
||||
<br />
|
||||
|
||||
<span>Description: </span>
|
||||
<span class="char-num">{{present['description']}}</span>
|
||||
<br />
|
||||
|
||||
<span>Items: </span>
|
||||
<span class="char-num" style='white-space:pre'>{{present['items']}}</span>
|
||||
<br />
|
||||
|
||||
|
||||
</div>
|
||||
{% if not loop.last %}
|
||||
<br />
|
||||
<hr />
|
||||
<br />
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
|
||||
{% endif %}
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user