All checks were successful
Build containers when image tags change / build-if-image-changed (., web, containers, main container, git.baumann.gr/adebaumann/vui) (push) Successful in 46s
Build containers when image tags change / build-if-image-changed (data-loader, loader, initContainers, init-container, git.baumann.gr/adebaumann/vui-data-loader) (push) Successful in 6s
61 lines
1.9 KiB
HTML
61 lines
1.9 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Suche - Vorgaben Informatiksicherheit{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="container-fluid">
|
|
<h1>Suche in den Vorgaben</h1>
|
|
|
|
{% if error_message %}
|
|
<div class="alert alert-danger" role="alert">
|
|
<span class="icon icon--error" aria-hidden="true"></span>
|
|
<strong>Fehler:</strong> {{ error_message }}
|
|
</div>
|
|
{% endif %}
|
|
|
|
<div class="row">
|
|
<div class="col-md-8">
|
|
<!-- Search form -->
|
|
<form action="." method="post" class="form-horizontal">
|
|
{% csrf_token %}
|
|
|
|
<div class="form-group">
|
|
<label for="query" class="control-label">Suchbegriff</label>
|
|
<div class="input-group">
|
|
<input type="text"
|
|
class="form-control"
|
|
id="query"
|
|
name="q"
|
|
placeholder="Suchbegriff eingeben …"
|
|
value="{{ search_term|default:'' }}"
|
|
required
|
|
maxlength="200"
|
|
aria-describedby="search-help">
|
|
<span class="input-group-btn">
|
|
<button type="submit" class="btn btn-primary">
|
|
<span class="icon icon--search" aria-hidden="true"></span>
|
|
Suchen
|
|
</button>
|
|
</span>
|
|
</div>
|
|
<small id="search-help" class="form-text text-muted">
|
|
Durchsuchen Sie Standards, Vorgaben und Referenzen nach Stichworten.
|
|
</small>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
|
|
<div class="col-md-4">
|
|
<div class="alert alert-info" role="alert">
|
|
<h3 class="h4">Suchtipps</h3>
|
|
<ul>
|
|
<li>Verwenden Sie spezifische Begriffe für bessere Ergebnisse</li>
|
|
<li>Die Suche erfasst Titel, Beschreibungen und Inhalte</li>
|
|
<li>Groß-/Kleinschreibung wird nicht berücksichtigt</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|