{% extends "base.html" %} {% load humanize i18n %} {% block breadcrumbs %} {% endblock breadcrumbs %} {% block content %}
{% if not billing_enabled and can_add_workspace %} {% translate "Add workspace" %} {% endif %}

{% translate "Manage workspaces" %}

{{ search_form.q }} {% if search_query %} {% translate "Clear" %} {% endif %}
{% if search_form.q.errors %}
{{ search_form.q.errors }}
{% endif %}
{% if billing_enabled %} {% endif %} {% for workspace in object_list %} {% if billing_enabled %} {% endif %} {% empty %} {% endfor %}
{% translate "Name" %} {% translate "Projects" %}{% translate "Billing" %}
{{ workspace }} {{ workspace.projects__count|intcomma }} {% if workspace.billing %} {% if workspace.billing.customer_name %} {{ workspace.billing.customer_name }} {% else %} {% blocktranslate with id=workspace.billing.pk %}Billing #{{ id }}{% endblocktranslate %} {% endif %} {% else %} {% translate "Not available" %} {% endif %}
{% translate "No workspaces found." %}
{% endblock content %}