{% extends "inc/layout.html" %} {% block title %}List of permissions{% endblock %} {% block content %}

LastUser can manage access permissions for client applications. Users can be assigned one or more permissions for each application. These permissions are then passed on to the application when the user logs in. If you manage multiple applications, this is a useful way to define access rights from a central location. LastUser can only manage site-level permissions at this time. Support for specifying access to a specific context within each application is forthcoming.

This page lists the available permission terms. Some terms are generic enough to be pre-defined for all users. Others may be specific to your applications and are therefore listed for you alone.

Global permissions

{% for perm in allperms %} {% else %} {% endfor %}
# Name Title Description
{{ loop.index }} {{ perm.name }} {{ perm.title }} {{ perm.description }}
(No global permissions have been defined)

Your permissions

{% for perm in userperms %} {% else %} {% endfor %}
# Name Title Description Action
{{ loop.index }} {{ perm.name }} {{ perm.title }} {{ perm.description }} Edit Delete
(You have not defined any permissions)

Define a new permission →

Users can be assigned permissions from each application's info page.

{% endblock %}