{% extends "base.html" %} {% block title %}OAuth clients — inoreader-mcp admin{% endblock %} {% block content %}
| Name | client_id | Created | Status | Redirect URIs | Actions |
|---|---|---|---|---|---|
| {{ c.name }} | {{ c.id }} |
{{ c.created_at_str }} | {{ 'revoked' if c.is_revoked else 'active' }} | {% for u in c.redirect_uris %}{{ u }}{% endfor %} |
{% if not c.is_revoked %} {% endif %} |
| No clients registered yet. | |||||