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

{% translate "community campaigns"|capfirst %}

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

{% translate "seems like we don't have any campaign right now."|capfirst %}
{% translate "but you can create one!"|capfirstletter %}

{% blocktranslate with site=_('worlds')|capfirst action=_('create campaign')|title trimmed %} Go to '{{ site }}' and click '{{ action }}' to create one. {% endblocktranslate %}

{% translate "worlds"|capfirst %}
{% 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 %}