2016-05-11 14:41:50 +00:00
|
|
|
<div class="workbox">
|
2015-04-28 03:24:02 +00:00
|
|
|
<a href="{% url 'work' work.id %}">{{ work.title }}</a> # {{work.id }}<br />
|
2012-12-13 03:35:35 +00:00
|
|
|
Language: {{ work.language }}<br />
|
|
|
|
Editions: <ol>
|
|
|
|
{% for edition in work.editions.all %}
|
|
|
|
<li>
|
2015-07-28 03:21:11 +00:00
|
|
|
<div class="editionbox">{{ edition.title }}, published by {{edition.publisher}} in {{ edition.publication_date }} with creators
|
2012-12-13 03:35:35 +00:00
|
|
|
{% for author in edition.authors.all %}
|
|
|
|
{{author}},
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ol>
|
|
|
|
</div>
|