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

{% translate "your campaigns"|capfirst %}
{% translate "campaigns you are part of."|capfirst %}

{% for object in object_list %}
{% include 'roleplay/campaign/include/campaign_card.html' with campaign=object %}
{% empty %}

{% translate "you are not part of any campaigns."|capfirst %}
{% blocktranslate with site=_('worlds')|capfirst action=_('create campaign')|title trimmed %} Go to '{{ site }}' and click '{{ action }}' to create one. {% endblocktranslate %}

{% endfor %} {% if is_paginated %}
{% include 'common/include/paginator.html' with paginator=paginator page_obj=page_obj path=request.path align='center' only %}
{% endif %}
{% include 'roleplay/campaign/include/campaign_create_footer.html' only %}
{% endblock body_content %} {% block javascript %} {% endblock javascript %}