{% extends "base.html" %} {% if page == 'following' %} {% set title = _("Collections I'm Following") %} {% else %} {# L10n: {0} is a username. #} {% set title = _('Collections by {0}')|f(author.name) %} {% endif %} {% block title %}{{ page_title(title) }}{% endblock %} {% block extrahead %}{{ category_arrow(page, prefix='p') }}{% endblock %} {% block content %}
{% if page == 'following' %} {{ breadcrumbs([(url('collections.list'), _('Collections')), (None, title)]) }} {% else %} {{ breadcrumbs([(url('collections.list'), _('Collections')), (None, author.name)]) }} {% endif %}

{{ title }}

{% include 'bandwagon/includes/collection_sidebar.html' %}
{% endblock %}