add latest updates

This commit is contained in:
2025-05-11 13:49:05 +02:00
parent 11d510566a
commit 49871c1d6e
4 changed files with 176 additions and 78 deletions

View File

@@ -4,7 +4,6 @@
<head>
<title>Requested Manga</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
<link rel="stylesheet" href="{{ url_for('static', filename='magic.css') }}">
</head>
@@ -12,13 +11,13 @@
<h1>Requested Manga</h1>
<div style="margin-bottom: 1em; text-align: center;">
<button onclick="window.location.reload()">Refresh</button>
<button onclick="window.location.href='/'">Back to Index</button>
<button class="refresh" onclick="window.location.reload()">Refresh</button>
<button class="index" onclick="window.location.href='/'">Back to Index</button>
</div>
{% if results %}
<div class="results">
{% if results %}
{% for result in results %}
<div class="card {{ result.type | lower }} {% if result.in_komga %}komga{% else %}requested{% endif %}">
@@ -39,8 +38,8 @@
</div>
</div>
{% endfor %}
{% endif %}
</div>
{% endif %}
{% if requests %}