{% extends "base.html" %} {% load endless %} {% load truncatechars %} {% block title %} — {{ supporter.username }}{% endblock %} {% block extra_css %} {% endblock %} {% block extra_js %} {% if works %} {% else %} {% endif %} {% endblock %} {% block extra_head %} {% endblock %} {% block topsection %}
{{ activetab }}
{% ifequal supporter request.user %}
You are logged in as the administrator of {{ supporter.username }}
{% endifequal %}
{% if supporter.profile.badges.all %} {% for badge in supporter.profile.badges.all %} {{ badge.description }} {% endfor %} {% endif %}
{% with supporter.profile.tagline as tagline %}{% if tagline %}{{ tagline }}{% else %} {% endif %}{% endwith %} {% if supporter.library.group in request.user.groups.all %} This is {{ request.user }}'s Library! {% else %} {% include supporter.library.join_template %} {% endif %}
{% endblock %} {% block content %}
{% include "explore.html" %}
{% if not works %} {% comment %} if we're in empty-wishlist, slideshow mode, suppress tab area {% endcomment %} {% endif %}
{% ifequal wishlist.works.all.count 0 %} {% ifequal request.user supporter %}

Add a book to your list to get started.



{% include "slideshow.html" %}



We'd also love to hear your feedback.
{% else %}
It looks like {{ supporter.username }} is just getting started, and hasn't added books just yet.

{% endifequal %} {% else %} {% if request.user.is_anonymous %}
{% if works_unglued %} {{ supporter }} wants you to know about these free books. Find out why. {% else %} {{ supporter }} isn't promoting any free books yet. Find out how you can. {% endif %}
{% if works_active %} {{ supporter }} is helping to make these books free. Find out how. {% else %} {{ supporter }} isn't ungluing books at the moment. Find out how you can. {% endif %}
{% if works_wished %} {{ supporter }} wants these books to be free. Find out how to help. {% else %} {{ supporter }} hasn't decided which books to give the world yet. Learn more. {% endif %}
{% endif %} {% lazy_paginate 20 works_unglued using "works_unglued" %} {% for work in works_unglued %}
{% with work.googlebooks_id as googlebooks_id %} {% include "book_panel.html" %} {% endwith %}
{% endfor %} {% lazy_paginate 20 works_active using "works_active" %} {% for work in works_active %}
{% with work.googlebooks_id as googlebooks_id %} {% include "book_panel.html" %} {% endwith %}
{% endfor %} {% lazy_paginate 20 works_wished using "works_wished" %} {% for work in works_wished %}
{% with work.googlebooks_id as googlebooks_id %} {% include "book_panel.html" %} {% endwith %}
{% endfor %} {% endifequal %}
{% endblock %}