registered_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 "registered_users_panel".
... in manage_users_and_groups.naml
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
<macro name="registered_users_panel">
    <div class="second-font field-title nowrap" style="margin:0"><t>Registered Users</t></div>
    <div class="weak-color" style="margin-bottom:.8em">
        <t>All users that have registered to <t.location.root_node.subject/>.
        These users have confirmed their email addresses and are able to login to the system.</t>
    </div>
 
    <div style="height:25em;overflow:auto">
        <n.site_users. length="99999">
        <n.filter_by.both condition1="[n.current_user.is_registered/]" condition2="[n.current_user.not.is_banned/]"/>
            <n.loop.>
                <n.current_user.name/> &lt;<n.current_user.user_email/>&gt;<br/>
            </n.loop.>
        </n.site_users.>
    </div>
</macro>