{% set title = "Success Stories" %} {% set description = "List of Tryton's success stories" %} {% set keywords = ["sucess story", "review", "case study" ] %} {% extends "layout.html" %} {% from "utils.html" import background, case_card with context %} {% block style %} {{ super() }} {{ background('banner-success-stories') }} {% endblock %} {% block content %} {{ super() }}

{{ title }}

{% for case in cases %}
{{ case_card(case) }}
{% endfor %}

Have a story to share? You can submit it using the issue tracker.

{% endblock content %}