{% extends 'base.html' %} {% block head %} {% endblock %} {% block title %} {{ name }} {% endblock %} {% block content %}

{{ name }}

{% if session['user'] %} {% if is_following %} {% set fview = 'unfollow_view' %} {% set ftext = 'Following' %} {% set fcolor = 'red' %} {% set ftitle = 'Click to unfollow' %} {% else %} {% set fview = 'follow_view' %} {% set ftext = 'Follow' %} {% set fcolor = 'green' %} {% set ftitle = 'Click to follow' %} {% endif %}
{{ ibutton(left_icon='bookmark', text=ftext, color=fcolor, title=ftitle) }}
{% endif %} {{ ibutton(href='https://mangadex.org/manga/' + id, right_icon='arrow-up-right', text='Source site', color='blue', title='Go to source site') }}
cover {% if chapters %} {% if session['user'] %}{% endif %} {% for chapter in chapters %} {% if session['user'] %} {% endif %} {% endfor %}
DoneName Group
{% if chapter['is_read'] %} {{ ibutton(href='?unread=' + chapter['id'], text='✓', color='green', title='Click to unread') }} {% endif %} Chapter {{ chapter['number'] }} {% if chapter['volume'] %}Volume {{ chapter['volume'] }} {% endif %} {% if chapter['name'] %}- {{ chapter['name'] }} {% endif %} {{ ', '.join(chapter['groups']) }}
{% else %}

This one has no chapters.

{% endif %} {% endblock %}