mirror of
https://github.com/Lost-MSth/Arcaea-server.git
synced 2026-02-11 10:27:27 +08:00
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!
This commit is contained in:
44
latest version/templates/web/changepurchaseitem.html
Normal file
44
latest version/templates/web/changepurchaseitem.html
Normal file
@@ -0,0 +1,44 @@
|
||||
{% extends 'base.html' %}
|
||||
{% block header %}
|
||||
<h1>{% block title %}Change the purchase's items{% endblock %}</h1>
|
||||
{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<form action="/web/changepurchaseitem" method="post">
|
||||
<div class="title">Add the purchase's item</div>
|
||||
<label for="purchase_name">Purchase name</label>
|
||||
<input name="purchase_name" id="purchase_name" required>
|
||||
<label for="item_id">ID of the item</label>
|
||||
<input name="item_id" id="item_id" required>
|
||||
<label for="type">Type</label>
|
||||
<div>
|
||||
<select name="type">
|
||||
<option value='single' selected>Single</option>
|
||||
<option value='pack'>Pack</option>
|
||||
<option value='world_song'>World song</option>
|
||||
<option value='character'>Character</option>
|
||||
</select>
|
||||
</div>
|
||||
<br />
|
||||
<input type="submit" value="Add">
|
||||
</form>
|
||||
|
||||
<form action="/web/changepurchaseitem/delete" method="post">
|
||||
<div class="title">Delete the purchase's item</div>
|
||||
<label for="purchase_name">Purchase name</label>
|
||||
<input name="purchase_name" id="purchase_name" required>
|
||||
<label for="item_id">ID of the item</label>
|
||||
<input name="item_id" id="item_id" required>
|
||||
<label for="type">Type</label>
|
||||
<div>
|
||||
<select name="type">
|
||||
<option value='single' selected>Single</option>
|
||||
<option value='pack'>Pack</option>
|
||||
<option value='world_song'>World song</option>
|
||||
<option value='character'>Character</option>
|
||||
</select>
|
||||
</div>
|
||||
<br />
|
||||
<input type="submit" value="Delete">
|
||||
</form>
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user