{% extends 'default.html' %} {% set active_page = "developer" %} {% block title %} Sign in with SimpleLogin {% endblock %} {% block default_content %}

Sign in with SimpleLogin (SIWSL)

{% for client in clients %}
{% if client.icon_id %} {% endif %} {{ client.name }} {% if client.approved %} ✅ {% else %} 🚫 {% endif %}
{{ client.nb_user() }} Users
Created {{ client.created_at |dt }}
{% if client.last_user_login() %} Last User Login: {{ client.last_user_login().get_user_name() }} {% endif %}
{% endfor %}
{% endblock %}