2018-01-30 03:56:18 +00:00
|
|
|
<!DOCTYPE html>{% load sass_tags %}
|
2011-09-21 05:22:48 +00:00
|
|
|
<html>
|
|
|
|
<head>
|
2011-11-22 01:21:06 +00:00
|
|
|
<title>unglue.it: {{work.title}}</title>
|
2018-01-30 03:56:18 +00:00
|
|
|
<link type="text/css" rel="stylesheet" href="{% sass_src 'scss/sitewide4.scss' %}" />
|
2018-01-30 17:47:51 +00:00
|
|
|
<link type="text/css" rel="stylesheet" href="{% sass_src 'scss/book_panel2.scss' %}" />
|
2011-11-22 01:21:06 +00:00
|
|
|
|
2011-11-22 18:49:59 +00:00
|
|
|
<style type="text/css">
|
|
|
|
body {
|
|
|
|
margin:0;
|
|
|
|
padding:0;
|
|
|
|
background: none;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
|
2012-03-08 02:47:40 +00:00
|
|
|
<script type="text/javascript" src="{{ jquery_home }}" ></script>
|
|
|
|
<script type="text/javascript" src="{{ jquery_ui_home }}"></script>
|
2011-11-22 01:21:06 +00:00
|
|
|
|
2011-11-22 18:49:59 +00:00
|
|
|
<!-- toggle to panelview state instead of listview default -->
|
|
|
|
<script type="application/x-javascript">
|
|
|
|
jQuery(document).ready(function($) {
|
|
|
|
$('.listview').addClass("panelview").removeClass("listview");
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
2011-11-22 01:21:06 +00:00
|
|
|
<script type="text/javascript" src="/static/js/wishlist.js"></script>
|
|
|
|
<script type="text/javascript" src="/static/js/greenpanel.js"></script>
|
2012-02-15 13:51:24 +00:00
|
|
|
|
|
|
|
<base target="_blank" />
|
2011-09-21 05:22:48 +00:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<!--- editions --->
|
2012-02-15 13:51:24 +00:00
|
|
|
<span id="content-block">
|
2011-09-21 05:22:48 +00:00
|
|
|
{% if work %}
|
2012-01-17 21:27:58 +00:00
|
|
|
{% with work.googlebooks_id as googlebooks_id %}
|
2011-11-22 01:21:06 +00:00
|
|
|
{% include "book_panel.html" %}
|
2011-12-28 00:17:44 +00:00
|
|
|
{% endwith %}
|
2011-09-21 05:22:48 +00:00
|
|
|
{% else %}
|
|
|
|
<p class="classname">No work corresponding to ISBN {{isbn}} available</p>
|
|
|
|
{% endif %}
|
2012-02-15 13:51:24 +00:00
|
|
|
</span>
|
2011-09-21 05:22:48 +00:00
|
|
|
</body>
|
|
|
|
</html>
|