visible_users_table

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 "visible_users_table".
... in people.naml
142
143
144
145
146
147
148
149
150
151
152
<macro name="visible_users_table" dot_parameter="columns" requires="node_page">
    <n.visible_users_list.>
        <n.show_people_filter total_rows="[n.element_count/]"/>
        <n.people_pagination total_rows="[n.element_count/]" />
        <n.sub_list. start="[n.people_page_index_record/]" length="[n.people_page_length/]">
            <n.people_table.>
                <n.columns/>
            </n.people_table.>
        </n.sub_list.>
    </n.visible_users_list.>
</macro>