2012-01-15 21:48:26 +00:00
{% extends "base.html" %}
{% load endless %}
2012-07-21 20:26:16 +00:00
{% load lang_utils %}
2012-06-01 14:22:39 +00:00
{% with request.user.wishlist.works.all as wishlist %}
2013-01-02 20:35:42 +00:00
{% with work_list.count as works_count %}
2012-01-15 21:48:26 +00:00
2012-07-21 20:26:16 +00:00
{% block title %} Ready-to-Read Works {% if pub_lang %} in {{pub_lang|ez_lang_name}}{% endif %}{% endblock %}
2012-01-15 21:48:26 +00:00
{% block extra_css %}
< link type = "text/css" rel = "stylesheet" href = "/static/css/supporter_layout.css" / >
< link type = "text/css" rel = "stylesheet" href = "/static/css/book_list.css" / >
< link type = "text/css" rel = "stylesheet" href = "/static/css/book_panel.css" / >
2012-03-19 19:52:09 +00:00
< link type = "text/css" rel = "stylesheet" href = "/static/css/lists.css" / >
2012-01-15 21:48:26 +00:00
{% endblock %}
{% block extra_head %}
2012-03-03 01:47:13 +00:00
< script type = "text/javascript" src = "/static/js/jquery.cookie.js" > < / script >
2012-01-15 21:48:26 +00:00
< script type = "text/javascript" src = "/static/js/wishlist.js" > < / script >
2012-03-08 02:47:40 +00:00
< script type = "text/javascript" src = "{{ jquery_ui_home }}" > < / script >
2012-01-15 21:48:26 +00:00
< script type = "text/javascript" src = "/static/js/greenpanel.js" > < / script >
< script type = "text/javascript" src = "/static/js/toggle.js" > < / script >
< script type = "text/javascript" src = "/static/js/tabs.js" > < / script >
{% endblock %}
{% block topsection %}
2012-03-02 14:40:10 +00:00
< div id = "locationhash" > {{ activetab }}< / div >
2012-01-15 21:48:26 +00:00
< div id = "js-topsection" >
< div class = "js-main" >
< div class = "js-topnews" >
< div class = "js-topnews1" >
< div class = "js-topnews2" >
< div class = "js-topnews3" >
< div class = "user-block" >
2012-02-07 17:01:00 +00:00
< div id = "user-block1" >
2013-01-02 20:35:42 +00:00
< div id = "block-intro-text" > < span class = "special-user-name" > {% if facet %}{{ facet|capfirst }}{% else %}Ready to Read{% endif %}< / span > < / div >
2012-01-15 21:48:26 +00:00
< / div >
2013-01-02 20:35:42 +00:00
< div class = "user-block2" > < span class = "user-short-info" > These {% if pub_lang %}{{ pub_lang|ez_lang_name }} language {% endif %}ebooks are ready to read - either they're in the public domain, or they've been unglued by people like you.< / span >
2012-01-15 21:48:26 +00:00
< / div >
< div class = "user-block3" >
< / div >
< / div >
< / div >
< / div >
< / div >
< / div >
< / div >
< / div >
{% endblock %}
{% block content %}
< div id = "main-container" >
< div class = "js-main" >
< div id = "js-leftcol" >
{% include "explore.html" %}
< / div >
< div id = "js-maincol-fr" >
< div class = "js-maincol-inner" >
2012-02-06 18:53:25 +00:00
< div id = "content-block" >
2012-02-29 17:34:21 +00:00
< div class = "content-block-heading unglued" id = "tabs" >
2012-01-15 21:48:26 +00:00
< ul class = "tabs" >
2013-01-02 20:35:42 +00:00
< li class = "tabs1" > < a href = "#" > All< br / > {{ works_count }}< / a > < / li >
< / ul >
< ul class = "book-list-view" >
< li > View As:< / li >
< li class = "view-list" >
< a href = "#" id = "toggle-list" >
< img src = "/static/images/booklist/view-list.png" alt = "view list" title = "view list" height = "21" width = "24" / >
< / a >
< / li >
< li class = "view-list" >
< a href = "#" id = "toggle-panel" >
< img src = "/static/images/booklist/view-icon.png" alt = "view icon" title = "view icon" height = "22" width = "22" / >
< / a >
< / li >
2012-01-15 21:48:26 +00:00
< / ul >
< / div >
2012-02-06 18:53:25 +00:00
< div id = "content-block-content" >
2013-01-02 20:35:42 +00:00
{% ifequal works_count 0 %}
There aren't any {{ pub_lang|ez_lang_name }} works in this list. Why don't you add some?
2012-01-15 21:48:26 +00:00
{% else %}
2012-02-29 17:34:21 +00:00
{% lazy_paginate 20 work_list using "work_list" %}
2012-01-15 21:48:26 +00:00
{% for work in work_list %}
< div class = "{% cycle 'row1' 'row2' %}" >
{% with work.last_campaign_status as status %}
{% with work.last_campaign.deadline as deadline %}
2012-01-17 21:27:58 +00:00
{% with work.googlebooks_id as googlebooks_id %}
2012-01-15 21:48:26 +00:00
{% include "book_panel.html" %}
{% endwith %}{% endwith %}{% endwith %}
< / div >
{% endfor %}
2012-02-29 17:34:21 +00:00
< div class = "pagination content-block-heading tabs-1" >
{% get_pages %}
{% for page in pages %}
2012-03-02 15:28:37 +00:00
< a href = "{{ page.path }}#1" class = "endless_page_link" > {{ page.number }}< / a >
2012-02-29 17:34:21 +00:00
{% endfor %}
2012-01-15 21:48:26 +00:00
< / div >
{% endifequal %}
< / div >
< / div >
< / div >
< / div >
< / div >
< / div >
{% endblock %}
2012-06-01 14:22:39 +00:00
{% endwith %}
2013-01-02 20:35:42 +00:00
{% endwith %}