57 lines
1.6 KiB
HTML
57 lines
1.6 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>isbn</title>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
|
||
|
<p>You entered isbn: {{isbn}}</p>
|
||
|
|
||
|
<!--- editions --->
|
||
|
|
||
|
{% if editions %}
|
||
|
<ul>
|
||
|
{% for edition in editions %}
|
||
|
<li>{{edition.id}} | {{edition.title}}
|
||
|
|
||
|
<!-- editioncovers for given edition -->
|
||
|
{% if edition.covers.all %}
|
||
|
<ul id="id">
|
||
|
{% for editioncover in edition.covers.all %}
|
||
|
<li>cover OL id: {{editioncover.openlibrary_id}}</li>
|
||
|
{% endfor %}
|
||
|
</ul>
|
||
|
{% else %}
|
||
|
<p class="classname">No editioncover for this edition</p>
|
||
|
{% endif %}
|
||
|
|
||
|
<!-- related work -->
|
||
|
{% if edition.work %}
|
||
|
<p class="classname">Related work: {{edition.work.id}} | {{edition.work.title}} <br/>
|
||
|
{{edition.work.authors.all}} </p>
|
||
|
{% endif %}
|
||
|
|
||
|
<!-- related campaigns -->
|
||
|
{% if edition.work.campaigns.all %}
|
||
|
<ul id="id">
|
||
|
{% for campaign in edition.work.campaigns.all %}
|
||
|
<li>Campaign: {{campaign.id}} | {{campaign.name}} | {{campaign.description}} <br/>
|
||
|
{{campaign.target}} {{campaign.deadline}}</li>
|
||
|
{% endfor %}
|
||
|
</ul>
|
||
|
{% else %}
|
||
|
<p class="classname">No associated campaigns</p>
|
||
|
{% endif %}
|
||
|
</li>
|
||
|
{% endfor %}
|
||
|
</ul>
|
||
|
{% else %}
|
||
|
<p>No editions are available.</p>
|
||
|
{% endif %}
|
||
|
|
||
|
</body>
|
||
|
</html>
|
||
|
|
||
|
|