users.index.html 1.07 KB
{% extends "starter-template.html" %}
{% block content %}

<table class="table table-striped table-hover">
    <tr>
        <th>Email</th>
        <th>Suppliers</th>
        <th>Roles</th>
        <th>&nbsp;</th>
    </tr>

    {% for user in users %}
    <tr>

        <td class="user-email">
            <a href="/users/view/{{ user._id }}">
            {{ user.email }}
            </a>
        </td>

        <td class="user-suppliers">
            {% for supplier in user.suppliers %}
            <span class="label label-default">{{ supplier }}</span>
            {% endfor %}
        </td>

        <td class="user-roles">
            {% for role in user.roles %}
            <span class="label label-default">{{ role }}</span>
            {% endfor %}
        </td>

        <td class="user-action">
            <a href="/users/change-password/{{ user._id }}" class="btn btn-primary" role="button">
                Change Password
            </a>
        </td>

    </tr>
    {% endfor %}
</table>

<a href="/users/add" class="btn btn-primary" role="button">Add</a>

{% endblock %}