mirror of
https://github.com/Lost-MSth/Arcaea-server.git
synced 2026-02-12 11:07:27 +08:00
@@ -28,7 +28,7 @@
|
||||
</form>
|
||||
<br />
|
||||
<hr />
|
||||
<form action="/web/changeuserpurchase/" method="post">
|
||||
<form action="/web/changeuserpurchase/edituser" method="post">
|
||||
<div class="title">Edit all the users</div>
|
||||
<br />
|
||||
<div>对所有单曲和曲包的操作 Operation to all singles and packs:
|
||||
|
||||
@@ -20,6 +20,7 @@
|
||||
<hr>
|
||||
<h1>系统方面 System</h1>
|
||||
<a href="{{ url_for('index.update_database') }}">数据库更新 Update databases</a></br></br>
|
||||
<a href="{{ url_for('index.update_user_save') }}">用户存档更新 Update user saves</a></br></br>
|
||||
<a href="{{ url_for('index.change_song') }}">歌曲修改 Change the songs</a></br></br>
|
||||
<a href="{{ url_for('index.change_character') }}">角色修改 Change the characters</a></br></br>
|
||||
<a href="{{ url_for('index.change_item') }}">购买信息修改 Change the items</a></br></br>
|
||||
|
||||
30
latest version/templates/web/updateusersave.html
Normal file
30
latest version/templates/web/updateusersave.html
Normal file
@@ -0,0 +1,30 @@
|
||||
{% extends 'base.html' %}
|
||||
{% block header %}
|
||||
<h1>{% block title %}Update users' saves{% endblock %}</h1>
|
||||
{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<form action="/web/updateusersave" method="post">
|
||||
<div class="title">Update one user's saves to the database</div>
|
||||
<label for="name">Arcaea Username</label>
|
||||
<input name="name" id="name">
|
||||
or<br />
|
||||
<label for="user_code">Arcaea User Code</label>
|
||||
<input name="user_code" id="user_code">
|
||||
<br />
|
||||
|
||||
<input type="submit" value="Update">
|
||||
</form>
|
||||
<br />
|
||||
<hr />
|
||||
<form action="/web/updateusersave" method="post">
|
||||
<div class="title">Update all users' saves to the database</div>
|
||||
<br />
|
||||
<input type="submit" value="Update all">
|
||||
|
||||
<div class="content">这里会将用户上传的存档覆盖到best_score表中,请注意是覆盖,不会进行分数比较。</div>
|
||||
<div class="content">Here you can overlay the saves uploaded by users to best_score table. Please remember that it
|
||||
is an overlay action, so scores will not be compared.</div>
|
||||
|
||||
</form>
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user