Back to Zulip

Catalog

templates/zerver/integrations/catalog.html

12.02.0 KB
Original Source

{% extends "zerver/portico.html" %} {% set entrypoint = "integrations" %} {% block customhead %}{% endblock %} {% block hello_page_container %} hello-main{% endblock %} {% block portico_content %} {% include 'zerver/marketing_nav.html' %} {% import 'zerver/integrations/macros.html' as integration_macros %}

{% trans %} And hundreds more through Zapier and IFTTT. {% endtrans %}

{% set dropdown_label = _('Filter by category') %} {% if selected_category_slug != 'all' %} {% set dropdown_label = categories_dict.get(selected_category_slug, dropdown_label) %} {% endif %}

{{ dropdown_label }}

{% trans %}All{% endtrans %} {% for category in categories_dict.keys() %} {{ categories_dict[category] }} {% endfor %}

{% trans %}Custom integrations{% endtrans %}

{% trans %}Incoming webhooks{% endtrans %}{% trans %}Interactive bots{% endtrans %}{% trans %}REST API{% endtrans %}

{% trans %}Categories{% endtrans %}

{% trans %}All{% endtrans %} {% for category in categories_dict.keys() %} {{ categories_dict[category] }} {% endfor %}

{% trans %}Custom integrations{% endtrans %}

{% trans %}Incoming webhooks{% endtrans %}{% trans %}Interactive bots{% endtrans %}{% trans %}REST API{% endtrans %}

{% for integration in visible_integrations %} {{ integration_macros.render_integration_lozenge(integration) }} {% endfor %}

Don't see an integration you need? We'd love to help.

Create your ownRequest an integration

{% endblock %}