Merge branch 'mass_edit'
[redakcja.git] / apps / wiki / templates / wiki / tabs / gallery_view.html
1 {% load i18n %}
2 <div id="side-gallery">
3     <!-- gallery toolbar -->
4     <div class="toolbar">
5         <button class="start-page">
6             <img src="{{STATIC_URL}}icons/revert.png"
7                 alt="{% trans "Go to first image of this part" %}" title="{% trans "Go to first image of this part" %}"/>
8         </button>
9         <button class="previous-page">
10             <img src="{{STATIC_URL}}icons/go-previous.png"
11                 alt="{% trans "Previous" %}" title="{% trans "Previous" %}"/>
12         </button>
13         <input type="text" size="3" maxlength="3" value="0" class="page-number" />
14         <span id="imagesCount" id="">/0</span>
15         <button class="next-page">
16             <img src="{{STATIC_URL}}icons/go-next.png"
17                 alt="{% trans "Next" %}" title="{% trans "Next" %}"/>
18         </button>
19         <button class="zoom-in">{% trans "Zoom in" %}</button>
20         <button class="zoom-out">{% trans "Zoom out" %}</button>
21         <div class="toolbar-end">
22         </div>
23     </div>
24     <div class="error_message">
25     </div>
26     <div class="gallery-image">
27         <img src="{{MEDIA_URL}}images/empty.png" />
28     </div>
29 </div>