removed unused stylesheer

This commit is contained in:
eclipse 2025-06-03 10:53:41 +02:00
parent 6d40c1254a
commit d2dba5b815

View File

@ -1,21 +1,18 @@
{% extends 'base.html' %} {% block title %}Alles durchsuchen{% endblock title %} {% extends 'base.html' %}
{% block title %}Alles durchsuchen{% endblock title %}
{% block head %} {% block head %}
<link {% endblock head %}
type="text/css"
rel="stylesheet" {% block heading %}Alles durchsuchen{% endblock heading %}
href="{{ url_for('static', filename='css/datatables.css') }}"
/> {% block content %}
{% endblock head %} {% block heading %}Alles durchsuchen{% endblock heading %}
{% block content %} {% include "_icons.svg" %} {% include "_icons.svg" %}
<section> <section>
<label> <label>
<input <input type="search" id="search_all" aria-label="search" placeholder="Suchbegriff eingeben …" value="" />
type="search"
id="search_all"
aria-label="search"
placeholder="Suchbegriff eingeben …"
value=""
/>
</label> </label>
<label> <label>
Groß-/Kleinschreibung beachten Groß-/Kleinschreibung beachten
@ -23,17 +20,14 @@
</label> </label>
</section> </section>
<section id="results"></section> <section id="results">
{% endblock content %} {% block script %} </section>
{% endblock content %}
{% block script %}
<script src="{{ url_for('static', filename='js/search_all.js') }}"></script> <script src="{{ url_for('static', filename='js/search_all.js') }}"></script>
<script> <script>
const url = "{{ url_for('home.search_all', _external=True) }}"; const url = "{{ url_for('home.search_all', _external=True) }}";
window.onload = () => { window.onload = () => initSearchall(url);
document
.getElementById("search_all")
.addEventListener("input", (event) =>
search_all(event.target.value, url)
);
};
</script> </script>
{% endblock script %} {% endblock script %}