Added UI to revert commits. Fixed some trailing whitespace.
[redakcja.git] / apps / wiki / templates / wiki / tabs / gallery_view.html
1 {% load i18n %}
2 <div class="vsplitbar" title="{% trans "Click to open/close gallery" %}">
3 </div>
4 <div id="side-gallery">
5     <!-- gallery toolbar -->
6     <div class="toolbar">
7         <button class="previous-page">
8             <img src="{{STATIC_URL}}icons/go-previous.png"
9                 alt="{% trans "Previous" %}" title="{% trans "Previous" %}"/>
10         </button><input type="text" size="3" maxlength="3" value="1" class="page-number" />
11         <button class="next-page">
12             <img src="{{STATIC_URL}}icons/go-next.png"
13                 alt="{% trans "Next" %}" title="{% trans "Next" %}"/>
14         </button>
15         <button class="zoom-in">{% trans "Zoom in" %}</button>
16         <button class="zoom-out">{% trans "Zoom out" %}</button>
17         <div class="toolbar-end">
18         </div>
19     </div>
20     <div class="error_message">
21     </div>
22     <div class="gallery-image">
23         <img src="{{MEDIA_URL}}images/empty.png" />
24     </div>
25 </div>