2015-04-28 03:24:02 +00:00
{% extends 'base.html' %}
2016-05-11 14:41:50 +00:00
2018-04-20 01:25:12 +00:00
{% load el_pagination_tags %}
2011-12-29 17:50:09 +00:00
{% load truncatechars %}
2018-01-30 17:47:51 +00:00
{% load sass_tags %}
2016-05-11 14:41:50 +00:00
2011-09-21 15:11:36 +00:00
{% block title %} — {{ supporter.username }}{% endblock %}
2011-11-29 23:14:25 +00:00
{% block extra_css %}
2018-01-30 20:31:20 +00:00
< link type = "text/css" rel = "stylesheet" href = "{% sass_src 'scss/supporter_layout.scss' %}" / >
2018-01-30 17:47:51 +00:00
< link type = "text/css" rel = "stylesheet" href = "{% sass_src 'scss/searchandbrowse2.scss' %}" / >
2018-01-30 20:31:20 +00:00
< link type = "text/css" rel = "stylesheet" href = "{% sass_src 'scss/book_list.scss' %}" / >
2018-01-30 17:47:51 +00:00
< link type = "text/css" rel = "stylesheet" href = "{% sass_src 'scss/book_panel2.scss' %}" / >
2011-11-29 23:14:25 +00:00
{% endblock %}
2012-03-08 14:37:25 +00:00
{% block extra_js %}
2011-10-14 05:23:46 +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 >
2011-11-09 01:34:15 +00:00
< script type = "text/javascript" src = "/static/js/greenpanel.js" > < / script >
2011-11-17 00:47:29 +00:00
< script type = "text/javascript" src = "/static/js/import_books.js" > < / script >
2012-02-02 18:40:08 +00:00
< script type = "text/javascript" src = "/static/js/counter.js" > < / script >
2012-03-07 18:23:34 +00:00
{% ifequal supporter request.user %}
<!-- we only need to be able to toggle the profile edit area in this case -->
< script type = "text/javascript" >
var $j = jQuery.noConflict();
$j(document).ready(function(){
2012-10-19 16:26:11 +00:00
if(window.location.hash!="#edit") {
$j('#user-block-hide').hide();
} else {
$j('#user-block-hide').css({"background": "#8dc63f"}).animate(
{backgroundColor: "white"}, 1500
);
}
2012-10-03 14:59:57 +00:00
$j('#edit_profile').click(function() {
2012-10-19 16:31:23 +00:00
$j("#user-block-hide").slideToggle(300);
});
$j('#profile_edit').click(function() {
$j("#user-block-hide").slideToggle(300);
2012-03-07 18:23:34 +00:00
});
});
< / script >
{% endifequal %}
2013-12-14 18:24:29 +00:00
{% if slidelist %}
2012-03-07 18:23:34 +00:00
<!-- when the user's wishlist is empty, views.py gives us works for a slideshow -->
< script src = "/static/js/slides.min.jquery.js" > < / script >
< script src = "/static/js/slideshow.js" > < / script >
<!-- toggle to panelview instead of listview default so slideshow will look right -->
< script type = "text/javascript" >
var $j = jQuery.noConflict();
$j(document).ready(function($) {
$('.listview').addClass("panelview").removeClass("listview");
});
< / script >
{% else %}
<!-- we only need these when there's stuff on the user's wishlist -->
< script type = "text/javascript" src = "/static/js/toggle.js" > < / script >
< script type = "text/javascript" src = "/static/js/tabs.js" > < / script >
{% endif %}
2011-10-13 16:23:16 +00:00
2012-03-08 14:37:25 +00:00
<!-- highlight LT/GR add functions when people click on import divs -->
< script type = "text/javascript" >
2012-02-29 13:41:30 +00:00
var $j = jQuery.noConflict();
2012-03-08 14:37:25 +00:00
function highlightTarget(targetdiv) {
var target = $j(targetdiv);
target.css({"background": "#8dc63f"}).animate(
{backgroundColor: "white"}, 1500
);
};
2012-02-29 13:41:30 +00:00
< / script >
{% endblock %}
2012-03-20 17:01:29 +00:00
{% block extra_head %}
2013-08-18 22:10:25 +00:00
< link rel = "alternate" type = "application/atom+xml" title = "feed for books from {{ supporter }}'s ungluing list" href = "feed" / >
2012-03-20 17:01:29 +00:00
{% endblock %}
2012-02-29 13:41:30 +00:00
2011-10-13 16:23:16 +00:00
{% block topsection %}
2012-03-02 14:40:10 +00:00
< div id = "locationhash" > {{ activetab }}< / div >
2013-10-17 16:44:47 +00:00
{% if supporter.library %}
2015-04-08 02:55:30 +00:00
< div class = "launch_top pale" > {{ supporter.library }} is a Library participating in Unglue.it. < a href = "{% url 'join_library' supporter.library.id %}" > Click here< / a > to use {{ supporter.library }}'s books.
2013-10-02 16:02:08 +00:00
< / div >
{% endif %}
2011-10-13 16:23:16 +00:00
< div id = "js-topsection" >
2011-10-14 05:29:23 +00:00
< div class = "js-main" >
< div class = "js-topnews" >
< div class = "js-topnews1" >
< div class = "js-topnews2" >
< div class = "js-topnews3" >
2013-03-10 01:25:47 +00:00
< div class = "user-block" itemscope itemtype = "http://schema.org/Person" >
2012-02-07 17:01:00 +00:00
< div id = "user-block1" >
2012-10-03 14:59:57 +00:00
< div class = "block-inner" >
2013-03-14 19:43:24 +00:00
< img class = "user-avatar" src = "{{ supporter.profile.avatar_url }}" height = "50" width = "50" alt = "Avatar for {{ supporter }}" title = "Avatar" / >
2012-10-03 14:59:57 +00:00
< span class = "user-name" >
2013-03-10 01:25:47 +00:00
< a href = "#" > < span itemprop = "name" > {{ supporter.username }}< / span > < / a >
2012-10-03 14:59:57 +00:00
< / span >
< / div >
2012-09-23 03:55:07 +00:00
< span class = "user-badges" >
2012-10-03 14:59:57 +00:00
{% if supporter.profile.badges.all %}
{% for badge in supporter.profile.badges.all %}
2013-01-04 18:34:50 +00:00
< img src = "{{ badge.path }}" alt = "{{ badge.description }}" title = "{{ badge.description }}" width = "26" height = "26" class = "{{ badge.name }}" / >
2012-10-03 14:59:57 +00:00
{% endfor %}
{% endif %}
2012-09-23 03:55:07 +00:00
< / span >
2011-12-16 17:17:08 +00:00
< / div >
2012-10-03 14:59:57 +00:00
2011-12-16 17:17:08 +00:00
< div class = "user-block2" >
2012-10-03 14:59:57 +00:00
< span class = "user-short-info" >
{% with supporter.profile.tagline as tagline %}{% if tagline %}{{ tagline }}{% else %} {% endif %}{% endwith %}
< / span >
2011-12-16 17:17:08 +00:00
< / div >
2012-10-03 14:59:57 +00:00
2011-12-15 15:28:23 +00:00
< div class = "user-block3" >
< div class = "badges" >
2012-09-23 03:48:53 +00:00
{% ifequal request.user supporter %}
< span class = "rounded" > < span class = "blue tabs1" title = "I've unglued {{ backed }} {% if backed == 1 %}book{% else %}books{% endif %}." > < span class = "hovertext" > I've unglued < / span > {{ backed }}< / span > < / span >
< span class = "rounded" > < span class = "orange tabs2" title = "I'm supporting {{ backing }} {% if backing == 1 %}book{% else %}books{% endif %}." > < span class = "hovertext" > I'm ungluing < / span > {{ backing }}< / span > < / span >
< span class = "rounded" > < span class = "grey tabs3" title = "I'm wishing for {{ wished }} {% if wished == 1 %}book{% else %}books{% endif %}." > < span class = "hovertext" > I'm wishing for < / span > {{ wished }}< / span > < / span >
{% else %}
2012-10-01 13:47:32 +00:00
< span class = "rounded" > < span class = "blue tabs1" title = "{{ supporter }} has unglued {{ backed }} {% if backed == 1 %}book{% else %}books{% endif %}." > < span class = "hovertext" > has unglued < / span > {{ backed }}< / span > < / span >
2012-09-23 03:48:53 +00:00
< span class = "rounded" > < span class = "orange tabs2" title = "{{ supporter }} is supporting {{ backing }} {% if backing == 1 %}book{% else %}books{% endif %}." > < span class = "hovertext" > is ungluing < / span > {{ backing }}< / span > < / span >
< span class = "rounded" > < span class = "grey tabs3" title = "{{ supporter }} is wishing for {{ wished }} {% if wished == 1 %}book{% else %}books{% endif %}." > < span class = "hovertext" > is wishing for < / span > {{ wished }}< / span > < / span >
{% endifequal %}
2011-12-15 15:28:23 +00:00
< / div >
< / div >
2011-10-13 16:23:16 +00:00
< div class = "user-block4" >
2017-03-05 04:00:19 +00:00
{% if request.user.is_authenticated %}
{% ifequal request.user supporter %}
< div id = "edit_profile" >
< img src = "/static/images/header/icon-edit.png" alt = "Edit Your Profile" title = "Edit Your Profile" / >
< / div >
{% endifequal %}
< div class = "social" >
{% if supporter.profile.home_url %}
< a href = "{{ supporter.profile.home_url }}" class = "nounderline" >
< img src = "/static/images/supporter_icons/home_square.png" alt = "{{ supporter }}'s homepage" title = "{{ supporter }}'s Homepage" / >
< / a >
{% endif %}
{% if supporter.profile.facebook_id %}
< a href = "https://www.facebook.com/{{supporter.profile.facebook_id}}" class = "nounderline" >
< img src = "/static/images/supporter_icons/facebook_square.png" alt = "{{ supporter }}'s Facebook" title = "{{ supporter }}'s Facebook" / >
< / a >
{% endif %}
{% if supporter.profile.twitter_id %}
< a href = "https://twitter.com/#!/{{ supporter.profile.twitter_id }}" class = "nounderline" >
< img src = "/static/images/supporter_icons/twitter_square.png" alt = "{{ supporter }}'s Twitter" title = "{{ supporter }}'s Twitter" / >
< / a >
{% endif %}
{% if supporter.profile.goodreads_user_link %}
< a href = "{{supporter.profile.goodreads_user_link}}" class = "nounderline" >
< img src = "/static/images/supporter_icons/goodreads_square.png" alt = "{{ supporter }}'s profile on GoodReads" title = "{{ supporter }}'s page on GoodReads" / >
< / a >
{% endif %}
{% if supporter.profile.librarything_id %}
2017-07-27 14:33:13 +00:00
< a href = "https://www.librarything.com/profile/{{ supporter.profile.librarything_id }}" class = "nounderline" >
2017-03-05 04:00:19 +00:00
< img src = "/static/images/supporter_icons/librarything_square.png" alt = "{{ supporter }}'s profile on LibraryThing" title = "{{ supporter }}'s page on LibraryThing" / >
< / a >
{% endif %}
2011-11-12 03:51:12 +00:00
{% endif %}
< / div >
2011-10-13 16:23:16 +00:00
< / div >
< / div >
2011-11-07 20:39:02 +00:00
{% ifequal supporter request.user %}
2014-10-31 17:52:19 +00:00
< div id = "user-block-hide" class = "user-block-hide" >
2012-03-09 18:15:30 +00:00
< form method = "POST" action = "#" >
2011-11-07 20:39:02 +00:00
{% csrf_token %}
2011-10-14 05:29:23 +00:00
< div class = "block block1" >
2013-03-15 01:42:00 +00:00
< div class = "block-inner" >
{{ profile_form.avatar_source.errors }}
2013-03-28 01:46:52 +00:00
Your profile pic: {{ profile_form.avatar_source }} {% ifequal supporter.profile.avatar_source 1 %} < br / > < a href = "http://en.gravatar.com/" > Set your Gravatar< / a > < br / > < br / > {% endifequal %}
2013-03-15 01:42:00 +00:00
< / div >
2011-10-13 16:23:16 +00:00
< div class = "block-inner" >
2013-03-18 18:56:27 +00:00
< p > Your Tagline< / p >
2011-11-09 17:24:26 +00:00
{{ profile_form.tagline.errors }}
2012-02-02 16:06:54 +00:00
{{ profile_form.tagline }}< br / >
2012-02-02 18:40:08 +00:00
< span id = "count_display" > 140< / span > characters remaining< br / > < br / >
2011-10-21 16:51:07 +00:00
2011-10-13 16:23:16 +00:00
< / div >
2011-12-16 17:17:08 +00:00
< input class = "profile-save" type = "submit" name = "submit" value = "Update" id = "submit" >
2011-10-13 16:23:16 +00:00
< / div >
2011-10-19 07:13:29 +00:00
< div class = "block block2" >
2013-03-18 18:56:27 +00:00
< h3 class = "title" > Your Links< / h3 >
2011-10-14 05:29:23 +00:00
< div class = "check-list" >
2011-12-26 17:53:28 +00:00
< label > {% if supporter.profile.home_url %}Change{% else %}Add{% endif %} your homepage URL:< / label >
2011-11-09 17:24:26 +00:00
{{ profile_form.home_url }}{{ profile_form.home_url.errors }}
2011-10-13 16:23:16 +00:00
< / div >
< div class = "check-list" >
2011-11-12 21:36:31 +00:00
{% if supporter.profile.twitter_id %}
2015-04-09 15:44:48 +00:00
< a href = "{% url 'social:begin' backend='twitter' %}?next=/" > Update your Twitter connection< / a > < br / > or disconnect Twitter: {{ profile_form.clear_twitter }}
2011-11-12 21:36:31 +00:00
{% else %}
2015-04-09 15:44:48 +00:00
< a href = "{% url 'social:begin' backend='twitter' %}?next=/" > Connect your Twitter account< / a > to Unglue.it
2011-11-12 21:36:31 +00:00
{% endif %}
2011-10-13 16:23:16 +00:00
< / div >
2011-11-12 18:58:31 +00:00
< div class = "check-list" >
{% if supporter.profile.facebook_id %}
2015-04-09 15:44:48 +00:00
< a href = "{% url 'social:begin' backend='facebook' %}?next=/" > Update your Facebook connection< / a > < br / > or disconnect Facebook: {{ profile_form.clear_facebook }}
2011-11-12 21:36:31 +00:00
{% else %}
2015-04-09 15:44:48 +00:00
< a href = "{% url 'social:begin' backend='facebook' %}?next=/" > Connect your Facebook account< / a > to Unglue.it
2011-11-12 21:36:31 +00:00
{% endif %}
< / div >
2012-02-29 13:41:30 +00:00
< div class = "check-list" id = "connectgr" >
2011-11-12 21:36:31 +00:00
{% if user.profile.goodreads_user_id %}
2015-04-08 02:55:30 +00:00
< a href = "{% url 'goodreads_auth' %}" > Update your GoodReads connection< / a > < br / > or disconnect GoodReads: {{ profile_form.clear_goodreads }}
2011-11-12 18:58:31 +00:00
{% else %}
2015-04-08 02:55:30 +00:00
< a href = "{% url 'goodreads_auth' %}" > Connect your GoodReads account< / a > to Unglue.it
2011-11-12 18:58:31 +00:00
{% endif %}
< / div >
2012-02-29 13:41:30 +00:00
< div class = "check-list" id = "connectlt" >
2011-12-26 17:53:28 +00:00
< label > {% if supporter.profile.librarything_id %}Change{% else %}Add{% endif %} your LibraryThing User ID:< / label >
2011-11-12 03:51:12 +00:00
{{ profile_form.librarything_id }}{{ profile_form.librarything_id.errors }}
< / div >
2011-10-13 16:23:16 +00:00
< / div >
2011-11-17 00:47:29 +00:00
< / form >
2011-10-19 07:13:29 +00:00
< div class = "block block3" >
2011-12-22 21:03:15 +00:00
< h3 class = "title" > Import your books< / h3 >
2013-10-17 16:44:47 +00:00
{% if request.user.profile.goodreads_user_id %}
2011-11-17 00:47:29 +00:00
< form id = "load_shelf_form" method = "post" action = "#" >
{% csrf_token %}
< div class = "fieldWrapper" >
2012-01-24 17:36:45 +00:00
2012-03-09 18:59:24 +00:00
< div id = "loadgr" > < span > < span id = "goodreads_shelves" > < / span > < input id = "goodreads_input" type = "submit" value = "Select your GoodReads shelves" / > < / span >
2012-01-24 17:36:45 +00:00
< / div >
2011-11-17 00:47:29 +00:00
< / div >
< / form >
2011-12-22 21:03:15 +00:00
{% else %}
2012-03-08 14:37:25 +00:00
< div id = "loadgr" onclick = "highlightTarget('#connectgr'); return false;" > < div > Connect your GoodReads account to import from GoodReads.< / div > < / div >
2011-11-17 00:47:29 +00:00
{% endif %}
2013-10-17 16:44:47 +00:00
{% if request.user.profile.librarything_id %}
2011-11-17 00:47:29 +00:00
< form id = "librarything_load" method = "post" action = "#" >
{% csrf_token %}
2012-02-09 17:28:45 +00:00
< div id = "loadlt" > < input type = "submit" id = "librarything_input" value = "Add your LibraryThing library" / > < / div >
2011-11-17 00:47:29 +00:00
< / form >
2011-12-22 21:03:15 +00:00
{% else %}
2012-03-08 14:37:25 +00:00
< div id = "loadlt" onclick = "highlightTarget('#connectlt'); return false;" > < div > Add your LibraryThing ID to import from LibraryThing.< / div > < / div >
2011-11-17 00:47:29 +00:00
{% endif %}
2014-10-31 17:52:19 +00:00
< h3 class = "title" > More< / h3 >
2015-04-08 02:55:30 +00:00
< a href = "{% url 'marc_config' %}" > Librarian Settings< / a >
2011-10-13 16:23:16 +00:00
< / div >
< / div >
2011-10-25 03:32:32 +00:00
{% endifequal %}
2011-10-13 16:23:16 +00:00
< / div >
< / div >
< / div >
< / div >
< / div >
< / div >
2011-09-29 11:44:03 +00:00
{% endblock %}
2011-09-12 05:53:54 +00:00
{% block content %}
2011-10-13 16:23:16 +00:00
2011-09-21 15:11:36 +00:00
< div id = "main-container" >
< div class = "js-main" >
2011-11-06 19:02:29 +00:00
< div id = "js-leftcol" >
2011-11-07 20:39:02 +00:00
{% include "explore.html" %}
< / div >
2011-09-12 05:53:54 +00:00
2011-09-21 15:11:36 +00:00
< div id = "js-maincol-fr" >
< div class = "js-maincol-inner" >
2012-02-06 18:53:25 +00:00
< div id = "content-block" >
2012-05-01 13:56:19 +00:00
{% if not works %}
{% comment %}
if we're in empty-wishlist, slideshow mode, suppress tab area
{% endcomment %}
2011-12-14 21:49:36 +00:00
< div class = "content-block-heading wantto" id = "tabs" >
2011-10-14 05:29:23 +00:00
< ul class = "tabs" >
2011-10-13 16:23:16 +00:00
< li class = "tabs1" > < a href = "#" > Unglued< / a > < / li >
2012-02-07 17:01:00 +00:00
< li class = "tabs2" > < a href = "#" > Active< / a > < / li >
2014-02-20 04:16:28 +00:00
< li class = "tabs3" > < a href = "#" > Not Yet< / a > < / li >
2011-10-13 16:23:16 +00:00
< / ul >
2012-05-01 13:56:19 +00:00
2011-09-29 02:02:33 +00:00
< ul class = "book-list-view" >
< li > View As:< / li >
2011-09-21 15:11:36 +00:00
< li class = "view-list" >
2011-11-06 23:43:04 +00:00
< a href = "#" id = "toggle-list" >
2011-12-27 02:10:32 +00:00
< img src = "/static/images/booklist/view-list.png" alt = "view list" title = "view list" / >
2011-09-29 02:02:33 +00:00
< / a >
2011-09-21 15:11:36 +00:00
< / li >
< li class = "view-list" >
2011-11-06 23:43:04 +00:00
< a href = "#" id = "toggle-panel" >
2011-12-27 02:10:32 +00:00
< img src = "/static/images/booklist/view-icon.png" alt = "view icon" title = "view icon" / >
2011-09-29 02:02:33 +00:00
< / a >
2011-09-21 15:11:36 +00:00
< / li >
< / ul >
< / div >
2012-05-01 13:56:19 +00:00
{% endif %}
2012-02-06 18:53:25 +00:00
< div id = "content-block-content" >
2011-10-21 16:51:07 +00:00
{% ifequal wishlist.works.all.count 0 %}
2012-02-29 17:13:29 +00:00
{% ifequal request.user supporter %}
< div class = "empty-wishlist" >
2012-03-07 18:23:34 +00:00
2013-08-18 22:10:25 +00:00
< div > < h2 style = "padding-left:35px;" > Add a book to your list to get started.< / h2 > < br / > < br / > < / div >
2012-03-07 18:23:34 +00:00
< div id = "js-slide" >
< div class = "js-main" >
< div class = "jsmodule" >
2012-03-26 19:26:47 +00:00
{% include "slideshow.html" %}
2012-03-07 18:23:34 +00:00
< / div >
< / div >
< / div >
< div id = "js-maincontainer-bot-block" >
< div id = "js-search" >
2015-05-06 20:14:13 +00:00
< label > Search and add free-licenced books! < / label >
2015-04-08 02:55:30 +00:00
< form action = "{% url 'search' %}" method = "get" >
2015-05-06 20:14:13 +00:00
< input type = "text" onfocus = "imgfocus()" onblur = "imgblur(0)" size = "25" class = "inputbox" name = "q" value = "{{ q }}" >
2012-03-07 18:23:34 +00:00
< input type = "submit" class = "greenbutton" value = "Search" >
< / form >
< / div >
< / div >
2015-08-18 15:03:49 +00:00
< br / > < br / > < hr / > We'd also love to hear your < a href = "{% url 'feedback' %}?page={{request.build_absolute_uri|urlencode:" " } } " > feedback< / a > .
2012-02-29 17:13:29 +00:00
< / div >
{% else %}
< div class = "empty-wishlist" >
It looks like {{ supporter.username }} is just getting started, and hasn't added books just yet.< br / > < br / >
{% endifequal %}
2011-10-21 16:51:07 +00:00
{% else %}
2012-06-13 19:50:03 +00:00
{% if request.user.is_anonymous %}
< div class = "tabs-1 anon_about" >
2012-07-17 12:47:53 +00:00
{% if works_unglued %}
2013-08-20 16:41:39 +00:00
{{ supporter }} wants you to know about these free books. < a href = "/about/unglued/" class = "hijax" > Find out why.< / a >
2012-07-17 12:47:53 +00:00
{% else %}
2013-08-20 16:41:39 +00:00
{{ supporter }} isn't promoting any free books yet. < a href = "/about/unglued_empty/" class = "hijax" > Find out how you can.< / a >
2012-07-17 12:47:53 +00:00
{% endif %}
2012-06-13 19:50:03 +00:00
< / div >
< div class = "tabs-2 anon_about" >
2012-07-17 12:47:53 +00:00
{% if works_active %}
2013-08-20 16:41:39 +00:00
{{ supporter }} is helping to make these books free. < a href = "/about/active/" class = "hijax" > Find out how.< / a >
2012-07-17 12:47:53 +00:00
{% else %}
2013-08-20 16:41:39 +00:00
{{ supporter }} isn't ungluing books at the moment. < a href = "/about/active_empty" class = "hijax" > Find out how you can.< / a >
2012-07-17 12:47:53 +00:00
{% endif %}
2012-06-13 19:50:03 +00:00
< / div >
< div class = "tabs-3 anon_about" >
2012-07-17 12:47:53 +00:00
{% if works_wished %}
2013-08-18 22:10:25 +00:00
{{ supporter }} wants these books to be free. < a href = "/about/wishlist/" class = "hijax" > Find out how to help.< / a >
2012-07-17 12:47:53 +00:00
{% else %}
2012-08-27 19:35:29 +00:00
{{ supporter }} hasn't decided which books to give the world yet. < a href = "/about/wishlist_empty/" class = "hijax" > Learn more.< / a >
2012-07-17 12:47:53 +00:00
{% endif %}
2012-06-13 19:50:03 +00:00
< / div >
{% endif %}
2012-02-22 03:00:23 +00:00
2012-02-24 16:37:06 +00:00
{% lazy_paginate 20 works_unglued using "works_unglued" %}
2012-02-22 03:00:23 +00:00
{% for work in works_unglued %}
< div class = "{% cycle 'row1' 'row2' %}" >
2012-09-11 17:41:53 +00:00
{% with work.googlebooks_id as googlebooks_id %}
2012-02-22 03:00:23 +00:00
{% include "book_panel.html" %}
2013-03-11 20:23:52 +00:00
{% endwith %}
2012-02-22 03:00:23 +00:00
< / div >
{% endfor %}
< div class = "pagination content-block-heading tabs-1" >
2012-02-24 16:37:06 +00:00
{% get_pages %}
{% for page in pages %}
2012-02-29 18:22:49 +00:00
< a href = "{{ page.path }}#1" class = "endless_page_link" > {{ page.number }}< / a >
2012-02-24 16:37:06 +00:00
{% endfor %}
2012-02-22 03:00:23 +00:00
< / div >
2012-02-24 16:37:06 +00:00
{% lazy_paginate 20 works_active using "works_active" %}
2012-02-22 03:00:23 +00:00
{% for work in works_active %}
2011-11-22 18:33:57 +00:00
< div class = "{% cycle 'row1' 'row2' %}" >
2014-02-11 16:37:39 +00:00
{% with work.googlebooks_id as googlebooks_id %}{% with 'tabs-2' as tab_override %}
2011-11-22 01:21:06 +00:00
{% include "book_panel.html" %}
2014-02-11 16:37:39 +00:00
{% endwith %}{% endwith %}
2011-11-22 18:33:57 +00:00
< / div >
2011-09-29 02:02:33 +00:00
{% endfor %}
2012-02-22 03:00:23 +00:00
< div class = "pagination content-block-heading tabs-2" >
2012-02-24 16:37:06 +00:00
{% get_pages %}
{% for page in pages %}
2012-02-29 18:22:49 +00:00
< a href = "{{ page.path }}#2" class = "endless_page_link" > {{ page.number }}< / a >
2012-02-24 16:37:06 +00:00
{% endfor %}
2011-11-18 04:09:23 +00:00
< / div >
2012-02-22 03:00:23 +00:00
2012-02-24 16:37:06 +00:00
{% lazy_paginate 20 works_wished using "works_wished" %}
2012-02-22 03:00:23 +00:00
{% for work in works_wished %}
< div class = "{% cycle 'row1' 'row2' %}" >
2012-09-11 17:41:53 +00:00
{% with work.googlebooks_id as googlebooks_id %}
2012-02-22 03:00:23 +00:00
{% include "book_panel.html" %}
2013-03-11 20:23:52 +00:00
{% endwith %}
2012-02-22 03:00:23 +00:00
< / div >
{% endfor %}
< div class = "pagination content-block-heading tabs-3" >
2012-02-24 16:37:06 +00:00
{% get_pages %}
{% for page in pages %}
2012-02-29 18:22:49 +00:00
< a href = "{{ page.path }}#3" class = "endless_page_link" > {{ page.number }}< / a >
2012-02-24 16:37:06 +00:00
{% endfor %}
2012-02-22 03:00:23 +00:00
< / div >
2012-06-13 19:50:03 +00:00
2011-10-21 16:51:07 +00:00
{% endifequal %}
2011-09-21 15:11:36 +00:00
< / div >
2011-09-29 02:02:33 +00:00
< / div >
2014-10-27 15:55:46 +00:00
{% if request.user.libpref %}
< div id = "libtools" >
< p > for libraries...< / p >
{% block marcform %}
2015-04-08 02:55:30 +00:00
< form method = "GET" action = "{% url 'user_marc' supporter.username %}" >
2014-10-27 15:55:46 +00:00
{% include 'marc_form.html' %}
< input type = "submit" name = "submit" value = "download MARC for {{supporter.username}} " id = "submit" >
< / form >
{% endblock %}
< / div >
{% endif %}
2011-09-21 15:11:36 +00:00
< / div >
< / div >
< / div >
< / div >
2011-09-12 05:53:54 +00:00
2012-06-01 14:22:39 +00:00
{% endblock %}