Bit nicer source flow.
[redakcja.git] / src / sources / templates / sources / source_detail.html
1 {% extends 'documents/base.html' %}
2 {% load sorl_thumbnail %}
3
4 {% block content %}
5   <h1>Źródło: {{ source }}</h1>
6
7   <p>
8   <a href="{% url 'source_upload' source.pk %}">
9     Skany
10   </a>
11   </p>
12
13   <h2>Przypisania do książek:</h2>
14   {% for bs in source.booksource_set.all %}
15     <div>
16       <a href="{{ bs.book.get_absolute_url }}">
17         {{ bs.book }}
18       </a>
19       <small>
20         {% if bs.page_start or bs.page_end %}
21           (skany {{ bs.page_start }}—{{ bs.page_end }})
22         {% else %}
23           (całość)
24         {% endif %}
25       </small>
26     </div>
27     {% for f in bs.get_files %}
28       {% thumbnail f '200x200' as c %}
29       <a href="{{ MEDIA_URL }}{{ f }}"><img src="{{ c.url }}"></a>
30       {% endthumbnail %}
31     {% endfor %}
32   {% endfor %}
33 {% endblock %}