{% extends 'core/layout.html' %} {% load i18n %} {% load static %} {% block title %}{% translate "sessions"|capfirst %} {% endblock title %} {% block breadcrumb %} {% include 'common/include/breadcrumb.html' with breadcrumbs='sessions' %} {% endblock breadcrumb %} {% block body_content %}

{% translate "your list of sessions"|capfirst %}

{% include 'common/include/filter_accordion.html' with filter=filter only %}
{% for session in object_list %} {% include 'roleplay/session/include/session_card.html' with session=session %} {% empty %}

{% translate "seems like you don't have any session."|capfirst %}
{% translate "you can create one epic quest but first you need to select your world."|capfirst %}

{% translate "go to world selection"|capfirst %}
{% endfor %}
{% endblock body_content %}