{% extends "base.html" %} {% block extra_head %} {% endblock %} {% block title %}Goodreads{% endblock %} {% block content %}

Goodreads

{% if user.profile.goodreads_user_id %}

Welcome, Goodreads user id# {{user.profile.goodreads_user_id}}. Your GR username is {{user.profile.goodreads_user_name}} and here is your Goodreads profile.

You can also revoke access for Unglue.it at Goodreads user apps panel.


{{gr_shelf_load_form.as_p}}
{% else %}

We don't currently know your Goodreads user information.

Enable Unglue.it to link to your Goodreads account

{% endif %}

Click here to update the number of books on your wishlist:

Number of books on your wishlist: {{user.wishlist.works.all|length}} (as of )

{% if reviews %}

Here are some of your books that you've put on your Goodreads shelves:

{% endif %}
{% if celerytasks %}

Book Loading tasks you've initiated

    {% for task in celerytasks %}
  • {{task.task_id}} | {{task.description}} | {{task.state}}
  • {% endfor %}
{% csrf_token %}
{% endif %}
{% endblock %}