Rearrange source to src dir.
[redakcja.git] / src / 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" alt="{% trans "Go to first image of this part" %}" title="{% trans "Go to first image of this part" %}">
6             <img src="{{STATIC_URL}}icons/revert.png"/>
7         </button>
8         <button class="previous-page" alt="{% trans "Previous" %}" title="{% trans "Previous" %}">
9             <img src="{{STATIC_URL}}icons/go-previous.png"/>
10         </button>
11         <input type="text" size="3" maxlength="3" value="0" class="page-number" />
12         <span id="imagesCount">/0</span>
13         <button class="next-page" alt="{% trans "Next" %}" title="{% trans "Next" %}">
14             <img src="{{STATIC_URL}}icons/go-next.png"
15                 alt="{% trans "Next" %}" title="{% trans "Next" %}"/>
16         </button>
17         <button class="zoom-in">{% trans "Zoom in" %}</button>
18         <button class="zoom-out">{% trans "Zoom out" %}</button>
19         <div class="toolbar-end">
20         </div>
21     </div>
22     <div class="error_message">
23     </div>
24     <div class="gallery-image">
25         <img src="{{MEDIA_URL}}images/empty.png" alt="no image" />
26     </div>
27 </div>