You will find only what you bring in.
[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   </div>
10   <div class="form-group">
11     <label for="replace-input">{% trans "Replace with" %}:</label>
12     <input id='replace-input' class="form-control" />
13   </div>
14   <div class="form-group">
15     <button class="btn btn-primary" id='replace-button'>{% trans "Replace" %}</button>
16   </div>
17   <div class="form-check">
18     <input type="checkbox" id="replace-all" class="form-check-input" />
19     <label for="replace-all">{% trans "Replace all" %}</label>
20   </div>
21   <h6>{% trans "Options" %}</h6>
22   <div class="form-check">
23     <input type="checkbox" id="search-case-sensitive" class="form-check-input" />
24     <label for="search-case-sensitive">{% trans "Case sensitive" %}</label>
25   </div>
26   <div class="form-check">
27     <input type="checkbox" id="search-from-cursor" class="form-check-input" />
28     <label for="search-from-cursor">{% trans "From cursor" %}</label>
29   </div>
30 </div>