mirror of
https://github.com/yuukiwww/taiko-web.git
synced 2024-10-22 17:05:49 +02:00
f83fab41e3
- Fixed touch multiplayer drum being too small and nameplate drawing on top of it - Fixed #lyric lines being forced to be lowercase and appearing too early - Fixed exiting session while someone else is using netplay sending you to difficulty selection of the song that the netplay person has selected - Fixed ≠MM title on song select not having the first symbol rotated - Fixed nameplate cache in song select and in game not getting cleared - Increased ping timeout for multiplayer Admin page fixes - Add meta viewport tag so that the admin pages can be opened on mobile - On song list, songs that are not enabled are now marked - Disable tabbing through diverge notes checkboxes in courses when adding or editing a song - Add Hash to song adding - Display an error if a local chart file has not been found while calculating hash - If calculating the hash results in an error, do not discard all other changes
26 lines
926 B
HTML
26 lines
926 B
HTML
{% extends 'admin.html' %}
|
|
{% block content %}
|
|
{% if admin.user_level >= 100 %}
|
|
<a href="/admin/songs/new" class="side-button">New song</a>
|
|
{% endif %}
|
|
<h1>Songs</h1>
|
|
{% for message in get_flashed_messages() %}
|
|
<div class="message">{{ message }}</div>
|
|
{% endfor %}
|
|
{% for song in songs %}
|
|
<a href="/admin/songs/{{ song.id }}" class="song-link">
|
|
<div class="song">
|
|
{% if song.title_lang.en and song.title_lang.en != song.title %}
|
|
<p><span class="song-id">{{ song.id }}.</span>
|
|
{% if not song.enabled %}(Not enabled){% endif %}
|
|
{{ song.title_lang.en }} <small>({{ song.title }})</small></p>
|
|
{% else %}
|
|
<p><span class="song-id">{{ song.id }}.</span>
|
|
{% if not song.enabled %}(Not enabled){% endif %}
|
|
{{ song.title }}</p>
|
|
{% endif %}
|
|
</div>
|
|
</a>
|
|
{% endfor %}
|
|
{% endblock %}
|