registration_label

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 "registration_label".
... in registration_label.naml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<override_macro name="registration_label" requires="user">
    <div style="margin-top:.4em">
        <n.if.is_registered>
                <then>
                    <div style="margin-top:.7em">
                        <h4><t>Registered:</t></h4>
                    </div>
                    <div style="margin-top:.1em;margin-left:.3em">
                        <n.registration_date.date_only/>
                    </div>
            </then>
                <else><strong><t>Unregistered User</t></strong></else>
        </n.if.is_registered>
    </div>
</override_macro>
Overrides default macro
... in user_profile.naml
178
179
180
181
182
183
184
185
<macro name="registration_label" requires="user">
    <div style="margin-top:.4em">
        <n.if.is_registered>
                <then><strong><t>Registered</t></strong>: <n.registration_date.date_only/></then>
                <else><strong><t>Unregistered User</t></strong></else>
        </n.if.is_registered>
    </div>
</macro>