{% set title = "Supporters" %} {% set description = "List of foundation supporters" %} {% set keywords = ["foundation", "supporters"] %} {% extends "layout.html" %} {% block content %} {{ super() }}

{{ title }}

{% for supporter in supporters %} {% set discuss = discuss_url(supporter) %} {% set roundup = roundup_url(supporter) %}

{{ supporter['name'] }}

{% if discuss %} forum {% endif %} {% if roundup %} bug_report {% endif %}
{% if supporter['website'] and supporter['website'] not in [discuss, roundup] %} {% endif %}
{% endfor %}

If you want to become a supporter, please send an email to foundation@tryton.org.

{% endblock %}