search_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 "search_form".
... in searcher.naml
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
<macro name="search_form" dot_parameter="do"
 
parameters="style,query,author,starrer,days" requires="node,
 
searcher_tool">
    <form style="[n.style/]"
    
    action="/template/NamlServlet.jtp">
        <input type="hidden" name="macro" value="searcher" />
        <input type="hidden" name="node" value="[n.id/]" />
        <n.hidden_field name="query" value="[n.query/]" />
        <n.hidden_field name="author" value="[n.author/]" />
        <n.hidden_field name="starrer" value="[n.starrer/]"
        
        />
        <n.hidden_field name="days" value="[n.days/]" />
        <n.do/>
    </form>
</macro>