user_profile

   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 "user_profile".
... in user_profile.naml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<macro name="user_profile" requires="servlet">
    <n.visitor.as_user_page.>
        <n.if.not.page_user.is_authenticated>
            <then>
                <n.login.><t>You must login to view this page.</t></n.login.>
            </then>
        </n.if.not.page_user.is_authenticated>
        <n.html>
            <head>
                <META NAME="robots" CONTENT="noindex,nofollow"/>
                <n.title.>Profile of <n.visitor.name/></n.title.>
                <n.zebra_table_javascript table_selector="table.profile"/>
            </head>
            <body>
                <n.page_user.profile_header/>
                <n.profile_options/>
            </body>
        </n.html>
    </n.visitor.as_user_page.>
</macro>