Fixes search html

And suppresses more warnings
This commit is contained in:
Mouse Reeve 2021-12-29 12:26:40 -08:00
parent 65e59e7b56
commit 7623168410
2 changed files with 6 additions and 2 deletions

View file

@ -13,7 +13,7 @@
<form class="block" action="{% url 'search' %}" method="GET"> <form class="block" action="{% url 'search' %}" method="GET">
<div class="field has-addons"> <div class="field has-addons">
<div class="control"> <div class="control">
<input type="input" class="input" name="q" value="{{ query }}" aria-label="{% trans 'Search query' %}"> <input type="text" class="input" name="q" value="{{ query }}" aria-label="{% trans 'Search query' %}">
</div> </div>
<div class="control"> <div class="control">
<div class="select" aria-label="{% trans 'Search type' %}"> <div class="select" aria-label="{% trans 'Search type' %}">

View file

@ -15,7 +15,11 @@ def validate_html(html):
errors = "\n".join( errors = "\n".join(
e e
for e in errors.split("\n") for e in errors.split("\n")
if "&book" not in e and "id and name attribute" not in e if "&book" not in e
and "&type" not in e
and "id and name attribute" not in e
and "illegal characters found in URI" not in e
and "escaping malformed URI reference" not in e
) )
if errors: if errors:
raise Exception(errors) raise Exception(errors)