1e455a5e8aba309a0ca9c3c5b883e91e26b7dad7
[turniej.git] / apps / poetry / templates / poetry / contest.html
1 {% extends "edition1/base.html" %}
2 {% load url from future %}
3
4 {% block "body" %}
5
6 <h1>
7 <a href='{% url "e1_main_page" %}'><img src="{{ STATIC_URL }}img/turniej-maly.png" style='float:left; margin-right: 10px; margin-top: -13px' /></a>
8 Turniej Elektrybałtów: utwory wybrane do konkursu</h1>
9
10 <div class="social">
11 <span style="position:relative; top: -5px;" >
12     <div class="fb-like" data-href="http://turniej.wolnelektury.pl" data-send="false" data-layout="button_count" data-width="150" data-show-faces="false"></div>
13 </span>
14 <g:plusone annotation="bubble" href="http://turniej.wolnelektury.pl"></g:plusone>
15 <script>
16   new nk_fajne({
17     url: "http://turniej.wolnelektury.pl",
18     type: 4,
19     color: 0,
20     title: "Turniej Elektrybałtów",
21     image: "http://turniej.wolnelektury.pl/turniej.png",
22     description: "Turniej Elektrybałtów - otwarty konkurs na najlepszego automatycznego poetę."
23   });
24 </script>
25 </div>
26
27 <div style='clear: both'></div>
28
29 {% for poet in poets %}
30     <h2><a href="{{ poet.get_absolute_url }}">{{ poet }}</a></h2>
31     <ul class='plain'>
32     {% for poem in poet.contest_poems %}
33         <li><a href="{{ poem.get_absolute_url }}">{{ poem }}</a></li>
34     {% endfor %}
35     </ul>
36 {% endfor %}
37 </ul>
38
39 {% endblock %}