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 subscribers_read.naml
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<macro name="raw_subscriber_list" requires="node">
   
    <n.put_in_head.>
        <style type="text/css">
            table.subscriptions {
                border-collapse:collapse;
                margin-top:1em;
                clear:both;
                width:100%
            }
            table.subscriptions th {
                padding: .3em .6em;
                text-align:left;
                border-bottom-style:solid;
                border-bottom-width:2px;
            }
            table.subscriptions td {
                padding: .5em;
            }
        </style>
    </n.put_in_head.>
    <n.zebra_table_javascript table_selector="table.subscriptions"/>    
    <div class="weak-color" style="float:left;margin:.5em 0">
        <t>All subscribers are listed here</t>
    </div>
    <n.subscriptions. start="[n.subscriber_page_index_record/]" length="[n.subscriber_page_length/]">
        <n.if.has_more_elements>
            <then>
                <table class="subscriptions">
                    <tr class="shaded-bg-color">
                        <th class="medium-border-color"><t>Email</t></th>    
                    </tr>
                    <n.loop.>
                        <tr>
                            <td class="nowrap"><n.subscription.user.user_email/></td>
                        </tr>
                    </n.loop.>
                </table>
            </then>
        </n.if.has_more_elements>
    </n.subscriptions.>
 
 </macro>