{% extends "wagtailadmin/generic/index.html" %} {% load i18n wagtailadmin_tags %} {% block content %}

{% if view.header_icon %}{% icon name=view.header_icon class_name="header-title-icon" %}{% endif %} {{ view.page_title }}{% if view.subtitle %} {{ view.subtitle }}{% endif %}

{% if workflows %} {% for workflow in workflows %} {% endfor %}
{% trans "Name" %} {% trans "Used by" %} {% trans "Tasks" %}
{{ workflow }} {% if not workflow.active %} Disabled {% endif %}
{% else %} {% url view.add_url_name as add_url %} {% if showing_disabled %}

{% blocktrans %}No workflows have been created. Why not add one?{% endblocktrans %}

{% else %}

{% blocktrans %}There are no enabled workflows. Why not add one?{% endblocktrans %}

{% endif %} {% endif %}
{% endblock %} {% block extra_css %} {{ block.super }} {% include "wagtailadmin/pages/_editor_css.html" %} {% endblock %} {% block extra_js %} {{ block.super }} {% include "wagtailadmin/pages/_editor_js.html" %} {% endblock %}