{% extends "rails/base.html" %} {% block title %}Users{% endblock %} {% block content %} {% if users %}

Users

{% endif %} {% for user in users %}

Id: {{ user.id }} <{{ user.full_name }} ({{ user.email }}> {{ user.role|capfirst }}

{% empty %} {% if error %}

Error

There was a problem connecting to the API.

{{ error }}

(The above error is shown to the user as an example. For security reasons these errors are normally hidden from the user)

{% else %}

There are no users available at this time.

{% endif %} {% endfor %} {% endblock %} {% block footer %} {% endblock %}