$def with (clients, active, revoked) $var title: Sign-ins

Tokens

Active

$for auth in active:

\ $auth["client_name"]
$auth["redirect_uri"]
$auth["initiated"]

$ r = auth["response"]

$", ".join(r["scope"])

$if "profile" in r:

$r["profile"]

Revoked

$for auth in revoked:

\ $auth["client_id"]
$auth["initiated"]

$ r = auth["response"]

$", ".join(r["scope"])

$if "profile" in r:

$r["profile"]

$if "access_token" in r:

$r["access_token"]

revoked $auth["revoked"]