{% extends "inc/layout.html" %} {% block title %}Client application information{% endblock %} {% block content %}
Application title
{{ client.title }}
Description
{{ client.description }}
Owner
{{ client.owner }}
Website
{{ client.website }}
Redirect URI
{{ client.redirect_uri }}
Notification URI
{{ client.notification_uri }}
Resource URI
{{ client.resource_uri }}
Active?
{{ client.active }}
Allow anyone to login?
{{ client.allow_any_login }}
{%- if g.user == client.user %}
Client id (key)
{{ client.key }}
Client secret
{{ client.secret }}
{%- endif %}
Registered date
{{ client.created_at }}
{% if client.user == g.user %}

Edit this application →

{% endif %}

Resources

This app provides the following resources and actions on resources.

{% if g.user == client.user %} {% endif %} {% for resource in resources %} {% if g.user == client.user %} {% endif %} {% set outer_loop_index = loop.index %} {% for action in resource.actions %} {% if g.user == client.user %} {% endif %} {% endfor %} {% if g.user == client.user %} {% endif %} {% else %} {% endfor %}
# Name Title DescriptionAction
{{ loop.index }} {{ resource.name }}{% if resource.siteresource %} (site){% endif %} {{ resource.title }} {{ resource.description }}Edit Delete
{{ outer_loop_index }}.{{ loop.index }} {{ action.name }} {{ action.title }} {{ action.description }}Edit Delete
Define a new action →
(This application does not provide any resources)
{% if g.user == client.user %}

Define a new resource →

{% endif %} {% if g.user == client.user %}

Permissions

The following users have permissions to this app.

{% for pa in permassignments %} {% else %} {% endfor %}
# User Permissions Action
{{ loop.index }} {{ pa.user.displayname() }} {{ pa.permissions }} Edit Delete
(No permissions assigned)

Define a new permission →
Assign permissions to a new user →

{% endif %} {% endblock %}