Code layout change.
[wolnelektury.git] / src / picture / templates / picture / picture_info.html
1  
2 <div id="picture-themes" class="dropdown-body">
3   <ul>
4 {% for slug, theme in themes.items %}
5 <li><a href="#theme-{{slug}}" data-coords="{{theme.coords}}">{{theme.theme}}</a></li>
6 {% endfor %}
7   </ul>
8 </div> 
9
10 <div id="picture-objects" class="dropdown-body">
11   <ul>
12 {% for slug, thing in things.items %}
13 <li><a href="#object-{{slug}}" data-coords="{{thing.coords}}">{{thing.object}}</a></li>
14 {% endfor %}
15   </ul>
16 </div>
17