user_post_count_column

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 "user_post_count_column".
... in people.naml
277
278
279
280
281
282
283
284
285
286
287
288
289
290
<macro name="user_post_count_column" parameters="title,width" requires="user_list">
    <n.table_column>
        <head>
            <td class="nowrap" style="text-align:center;[n.width_style.width/]">
                <n.default. to="[t]Post Count[/t]"><n.title/></n.default.>
            </td>
        </head>
        <body>
            <td class="weak-color" style="text-align:center">
                <n.current_user.node_count/>
            </td>
        </body>
    </n.table_column>
</macro>