raw_subscriber_list

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 "raw_subscriber_list".
... in people_tabbed_pane.naml
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<macro name="raw_subscriber_list" requires="node" dot_parameter="columns">    
    <n.put_in_head.>  
        <style type="text/css">             
        </style>  
    </n.put_in_head.>  
      
    <n.zebra_table_javascript table_selector="table.subscriptions"/>  
      
    <form method="post" action=""  class=''>          
        <div>  
            <b>Name:</b> <input type='text' maxlength='30'  name="name" /><input class="sub_but"  type="submit" value="Search" />  
        </div>         
    </form>  
    <br/>  
    <n.if.is_submitted_form>          
        <then>  
            <n.searched_users_list.>  
                <n.people_table.>  
                    <n.columns/>  
                </n.people_table.>  
            </n.searched_users_list.>  
        </then>  
    </n.if.is_submitted_form>      
</macro>