{% extends 'base.html' %} {% block title %} Stuff I follow {% endblock %} {% block head %} {% endblock %} {% block content %} {% for title in titles %} {% set title_url = url_for('title_view', site=title['site'], title_id=title['id']) %}
{{ title['name'] }}
{% if title['chapters']|length > 4 %} and {{ title['chapters']|length - 4 }} more... {% endif %} {% for ch in title['chapters'][-4:] %} Chapter {{ ch['num_major'] }}{% if ch['num_minor'] %}.{{ ch['num_minor'] }}{% endif %} {% if ch['volume'] %}Volume {{ ch['volume'] }} {% endif %} {% if ch['name'] %} - {{ ch['name'] }}{% endif %} {% for group in ch['groups'] %} {{ group | truncate(20) }} {% endfor %} {% endfor %}
{% endfor %} {% if not titles %}

You're not following any title yet. Try searching for some.

{% endif %} {% endblock %}