Fixes #4191: backward search.
[redakcja.git] / src / wiki / templates / wiki / tabs / search_view.html
1 {% load i18n %}
2 <div id='side-search' class="container">
3   <div class="form-group">
4     <label for="search-input" class="mt-2">{% trans "Search" %}:</label>
5     <input id='search-input' class="form-control" />
6   </div>
7   <div class="form-group">
8     <button id='search-button' class="btn btn-primary">{% trans "Search" %}</button>
9     <button id='search-prev-button' class="btn btn-primary">&#8592;</button>
10   </div>
11   <div class="form-group">
12     <label for="replace-input">{% trans "Replace with" %}:</label>
13     <input id='replace-input' class="form-control" />
14   </div>
15   <div class="form-group">
16     <button class="btn btn-primary" id='replace-button'>{% trans "Replace" %}</button>
17   </div>
18   <div class="form-check">
19     <input type="checkbox" id="replace-all" class="form-check-input" />
20     <label for="replace-all">{% trans "Replace all" %}</label>
21   </div>
22   <h6>{% trans "Options" %}</h6>
23   <div class="form-check">
24     <input type="checkbox" id="search-case-sensitive" class="form-check-input" />
25     <label for="search-case-sensitive">{% trans "Case sensitive" %}</label>
26   </div>
27   <div class="form-check">
28     <input type="checkbox" id="search-from-cursor" class="form-check-input" />
29     <label for="search-from-cursor">{% trans "From cursor" %}</label>
30   </div>
31 </div>