{% extends "base.html" %}
{% load crispy_forms_tags humanize i18n icons permissions translations %}
{% block breadcrumbs %}
{% if project %}
{{ project }}
{% translate "Automatic suggestions" %}
{% else %}
{% translate "Manage" %}
{% translate "Automatic suggestions" %}
{% endif %}
{% endblock breadcrumbs %}
{% block content %}
{% documentation_icon 'admin/machine' right=True %}
{% translate "Configured automatic suggestion services" %}
{% for service in configured_services %}
{% include 'machinery/detail.html' %} |
{% if service.is_enabled or not service.is_available %}
{% else %}
{% endif %}
|
{% if service.has_settings %}
{% translate "Configure" %}
{% endif %}
|
{% endfor %}
{% documentation_icon 'admin/machine' right=True %}
{% translate "Available automatic suggestion services" %}
{% for service in available_services %}
{% include 'machinery/detail.html' %} |
|
{% endfor %}
{% endblock content %}