edit_post_extra_fields

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 "edit_post_extra_fields".
... in edit_post_extra_fields.naml
4
5
6
7
8
9
10
11
12
13
14
15
16
<override_macro name="edit_post_extra_fields" requires="node_page">
    <n.extra_fields.>
        <n.if.visitor.is_registered>
            <then>
                <div class="extra-fields">
                    <n.alert_field.checkbox style="margin-top:.1em"/>
                    <n.set_value.checked/>
                    <label for="[n.alert_field.name/]"><t>Alert me by email when someone posts to this thread</t></label>
                </div>
            </then>
        </n.if.visitor.is_registered>
    </n.extra_fields.>
</override_macro>
Overrides default macro
... in edit_post.naml
131
132
133
134
135
136
137
138
139
140
141
142
<macro name="edit_post_extra_fields" requires="node_page">
    <n.extra_fields.>
        <n.if.visitor.is_registered>
            <then>
                <div class="extra-fields">
                    <n.alert_field.checkbox style="margin-top:.1em"/>
                    <label for="[n.alert_field.name/]"><t>Alert me by email when someone posts to this thread</t></label>
                </div>
            </then>
        </n.if.visitor.is_registered>
    </n.extra_fields.>
</macro>