Rearrange source to src dir.
[redakcja.git] / src / wiki / templates / wiki / tabs / search_view.html
1 {% load i18n %}
2 <div id='side-search'>
3     <p>{% trans "Search" %}:<br/>
4     <input id='search-input' /><br/>
5     <button id='search-button'>{% trans "Search" %}</button>
6     </p>
7
8     <p>{% trans "Replace with" %}:<br/>
9         <input id='replace-input' /><br/>
10         <button id='replace-button'>{% trans "Replace" %}</button><br/>
11         <input type="checkbox" id="replace-all" />
12             <label for="replace-all">{% trans "Replace all" %}</label><br/>
13     </p>
14
15     <p>{% trans "Options" %}<br/>
16         <input type="checkbox" id="search-case-sensitive" />
17             <label for="search-case-sensitive">{% trans "Case sensitive" %}</label><br/>
18         <input type="checkbox" id="search-from-cursor" />
19             <label for="search-from-cursor">{% trans "From cursor" %}</label><br/>
20     </p>
21 </div>