{% extends "base.html" %} {% block bodytag -%} {% endblock -%} {% block content -%}
{% if myfeeds -%}

{{_("Custom Rss")}}
{{ _('Fulltext') }}
{% if tips -%}
{{tips}}
{% endif -%}
{% for feed in myfeeds -%}
{{ feed.title }} {% if feed.isfulltext %} {{_('Fulltext')}}{% endif %} {% for ComicBaseClass in comic_base_classes -%} {% if feed.url.startswith(ComicBaseClass.accept_domains) %} {{_(ComicBaseClass.__name__.rstrip('BaseBook'))}} {% endif %} {% endfor -%}
{% endfor -%}
{% endif -%}

{{ _("Subscribed") }}

{% for book in books if nickname in book.users -%}
{{ book.title }} {% if book.separate -%} {{_('Separate')}} {% endif -%}
{% if book.description|length>80 -%} {{book.description[:80]}}... {% else -%} {{book.description}} {% endif -%}
{% if book.needs_subscription -%} {{_("Login Info")}} {% endif -%} {{ _("Unsubscribe") }}
{% else -%} {% endfor -%}

{{ _("Unsubscribed") }}

{% for book in books if nickname not in book.users -%}
{{book.title}} {{ _('Separate') }}
{% if book.description|length>80 -%} {{book.description[:80]}}... {% else -%} {{ book.description }} {% endif -%}
{% else -%} {% endfor -%}

{{ _("Bookmarklet") }}

{{_("Add to KindleEar")}}
- {{_("Drag and drop this link to your bookmarks")}} -

{% endblock -%} {% block js -%} {% endblock -%}