list_current_groups

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 "list_current_groups".
... in user_profile.naml
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
<macro name="list_current_groups" requires="user">
    <!-- List the groups of the user-->
    <n.set_local_user.this_user />
    <div style="margin-top:.4em">
        <strong><t>Groups</t>:</strong>
        <n.local_user.groups.>
            <n.sort/>
            <n.loop.>
                <n.if.has_more_elements>
                    <then><n.current_group/>,&nbsp;</then>
                    <else><n.current_group/></else>
                </n.if.has_more_elements>
            </n.loop.>
        </n.local_user.groups.>
        <n.if.visitor.is_site_admin>
            <then>
                <div style="margin-top:.3em">
                    <img src="/images/user_group.png" align="absmiddle" width="18" height="16"/>
                    <a href="[n.local_user.change_user_groups_path/]"><t>Add / Remove Groups</t></a>
                    | <a href="[n.local_user.edit_profile_path/]"><t>Edit Profile</t></a>
                </div>
            </then>
        </n.if.visitor.is_site_admin>
    </div>
</macro>