<tr class="app-access-title">
    <td>
        <h3>{% trans %}Your Access{% endtrans %}</h3>
    </td>
</tr>
{% for app in applications %}
    {% set app_vars_path = 'include/apps/' ~ app.id ~ '.jinja' %}
    {% import app_vars_path as app_vars with context %}
    <tr>
        <td>
            <table cellpadding="0" cellspacing="0" style="width: 100%;">
                <tr>
                    <td valign="middle" style="width: 20px;">
                        <img
                            src="{{ app_vars.icon }}"
                            alt="{{ app.id }}"
                            width="16"
                            height="16"
                        >
                    </td>
                    <td valign="middle">
                        <a href="{{ app.url }}" class="app-link">
                            <span>{{ app.name }}</span>
                            <img
                                src="{{ ASSETS_URL }}/icons/generic/externalLink.png"
                                alt="external_link"
                                width="12"
                                height="12"
                            >
                        </a>
                    </td>
                </tr>
            </table>
            <p class="app-description">
                {{ app_vars.description }}
            </p>
        </td>
    </tr>
{% endfor %}
