diff --git a/templates/search.html b/templates/search.html new file mode 100644 index 0000000..9093a9c --- /dev/null +++ b/templates/search.html @@ -0,0 +1,218 @@ +{% extends "base.html" %} + +{% block title %}Suche - AniWorld Downloader{% endblock %} + +{% block content %} +
+
+

Suche

+
+
+ +
+
+
+
+
+
+ + +
+
+ + {% if query %} + {% if results %} +
Suchergebnisse für "{{ query }}"
+
+ {% for result in results %} + +
+
{{ result.title }}
+ {{ result.source }} +
+
+ {% endfor %} +
+ {% else %} +
+ Keine Ergebnisse gefunden für "{{ query }}" +
+ {% endif %} + {% else %} +
+ +

Gib einen Suchbegriff ein, um zu beginnen

+
+ {% endif %} +
+
+
+ +
+ + +
+
+
Info
+
+
+

Die Suche durchsucht Titel von:

+
    +
  • AniWorld.to
  • +
  • S.to
  • +
+

Klicke auf ein Ergebnis, um es direkt zu analysieren.

+
+
+
+
+ + + +{% endblock %} + +{% block extra_scripts %} + +{% endblock %} \ No newline at end of file diff --git a/templates/settings.html b/templates/settings.html new file mode 100644 index 0000000..bfc26c7 --- /dev/null +++ b/templates/settings.html @@ -0,0 +1,129 @@ +{% extends "base.html" %} + +{% block title %}Einstellungen - AniWorld Downloader{% endblock %} + +{% block content %} +
+
+

Einstellungen

+
+
+ +
+
+
+
+
Allgemeine Einstellungen
+
+
+
+
Suchleisten
+
+ + +
+
+ + +
+
+ + +
+ +
Provider-Priorität
+
+ +
+
+ + Vidmoly +
+
+ + VOE +
+
+ + SpeedFiles +
+
+ + Vidoza +
+
+ + Doodstream +
+
+ + Streamtape +
+
+ Ziehe Provider, um ihre Priorität zu ändern (bald verfügbar) +
+ +
VPN-Einstellungen
+
+ + +
+ +
+ +
+
+
+
+
+ +
+
+
+
Systeminfo
+
+
+

Version: Web 1.2

+

Original-Version: 1.32

+

Jellyfin-Benutzer: {{ current_user.jellyfin_username }}

+

Verbunden seit: {{ current_user.created_at.strftime('%d.%m.%Y %H:%M') }}

+
+
+ +
+
+
Über
+
+
+

+ Der AniWorld Downloader Web ist eine Webanwendung, die auf dem originalen + AniWorld Downloader von NMB basiert. +

+

+ Originalprojekt:
+ + NINJAMINEBRO/Aniworld-Downloader + +

+
+
+
+
+{% endblock %} + +{% block extra_scripts %} + +{% endblock %} \ No newline at end of file