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