people_table

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 "people_table".
... in people.naml
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
<macro name="people_table" dot_parameter="columns" requires="user_list">
    <n.put_in_head.>
        <style type="text/css">
            table.people {
                width:100%;
                border-collapse:collapse;
                clear:both;
            }
            table.people td {
                padding:.1em .3em;
            }
            tr.header-row td {
                font-weight:bold;
                padding: .3em;
            }
        </style>
    </n.put_in_head.>
    <n.zebra_table_javascript table_selector="table.people"/>
 
    <table class="people">
        <n.table_header.>
            <tr class="header-row shaded-bg-color">
                <n.columns/>
            </tr>
        </n.table_header.>
        <n.loop.>
            <tr class="people-row">
                <n.columns/>
            </tr>
        </n.loop.>
    </table>
</macro>