reply_form

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 "reply_form".
... in captcha5posts.naml
2
3
4
5
6
7
8
9
10
11
12
13
<override_macro name="reply_form">
    <n.if.not.visitor.is_registered>
        <then.anonymous_name_control/>
    </n.if.not.visitor.is_registered>
    
    <n.subject_control/>
    <n.message_control/>
    
    <n.if.either condition1="[n.not.visitor.is_registered/]" condition2="[n.needs_captcha/]">
        <then.captcha_control/>
    </n.if.either>
</override_macro>
Overrides default macro
... in reply.naml
108
109
110
111
112
113
114
115
<macro name="reply_form">
    <n.subject_control/>
    <n.message_control/>
 
    <n.if.visitor.has_too_many_posts>
        <then.captcha_control/>
    </n.if.visitor.has_too_many_posts>
</macro>