all_users_panel

NAML documentation   Watch a video
   Usages of this macro
The source code below doesn't have navigation links because no usage has been compiled yet. Navigation links depend on how and where the macro is used, so first you may try finding all usages of "all_users_panel".
... in all_users_panel.naml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<override_macro name="all_users_panel">
    <div class="second-font field-title nowrap" style="margin:0"><t>All Users</t></div>
    <div class="weak-color" style="margin-bottom:.8em">
        <t>Read-only list with all users with an email under <t.location.root_node.subject/>.</t>
        <t>This list shows registered, unregistered and banned users. Anonymous users are not listed because they don't have an email and thus cannot be part of a group.</t>
    </div>
 
    <div style="height:25em;overflow:auto">
        <n.site_users. length="99999">
            <n.loop.>
                <n.current_user.name/> &lt;<n.current_user.user_email/>&gt;<br/>
            </n.loop.>
        </n.site_users.>
    </div>
</override_macro>
Overrides default macro
... in manage_users_and_groups.naml
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
<macro name="all_users_panel">
    <div class="second-font field-title nowrap" style="margin:0"><t>All Users</t></div>
    <div class="weak-color" style="margin-bottom:.8em">
        <t>Read-only list with all users with an email under <t.location.root_node.subject/>.</t>
        <t>This list shows registered, unregistered and banned users. Anonymous users are not listed because they don't have an email and thus cannot be part of a group.</t>
    </div>
 
    <div style="height:25em;overflow:auto">
        <n.site_users. length="99999">
            <n.loop.>
                <n.current_user.name/> &lt;<n.current_user.user_email/>&gt;<br/>
            </n.loop.>
        </n.site_users.>
    </div>
</macro>