manage_users_and_groups

   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 "manage_users_and_groups".
... in manage_users_and_groups.naml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<macro name="manage_users_and_groups" requires="servlet">
    <n.if.not.visitor.can_manage_users_and_groups>
        <then>
            <n.login.><t>Only authorized users can proceed in this area.</t></n.login.>
        </then>
    </n.if.not.visitor.can_manage_users_and_groups>
 
    <n.if.is_submitted_form>
        <then.save_users_and_group/>
    </n.if.is_submitted_form>
 
    <n.html>
        <head>
            <META NAME="robots" CONTENT="noindex,nofollow"/>
            <n.title.><t>Manage Users & Groups</t></n.title.>
            <n.if.is_submitted_form>
                <then>
                    <script type="text/javascript">
                        $(document).ready(function() {
                            notice('<t>Data successfully saved</t>', 2000, 1000);
                        });
                    </script>
                </then>
            </n.if.is_submitted_form>
        </head>
        <body>
            <n.edit_header first_text="[t]Manage Users & Groups[/t]" second_text="[n.root_node.subject/]" />
 
            <div class="weak-color" style="margin-top:1em">
                <t>Below you can manage groups and users. You can copy and paste users in order
                to move them from one group to another.</t>
            </div>
 
            <div class="weak-color" style="margin:.5em 0 1em">
                <t>You can also <n.root_node.change_permissions_link.>change the permissions</n.root_node.change_permissions_link.> of the groups below.</t>
            </div>
 
            <n.user_groups.>
                <n.add.members_group/>
                <n.add.administrators_group/>
                <n.sort/>
                <n.vertical_tab_control.>
                    <n.add_new_group_vertical_tab/>
                    <n.add_all_users_vertical_tab/>
                    <n.add_registered_vertical_tab/>
                    <n.loop.>
                        <n.add_group_vertical_tab group="[n.current_group/]"/>
                    </n.loop.>
                    <n.reset_list_index/>
                </n.vertical_tab_control.>
            </n.user_groups.>
        </body>
    </n.html>
</macro>