user_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_column".
... in people.naml
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
<macro name="user_column" parameters="title,width" requires="user_list">
    <n.table_column>
        <head>
            <td style="[n.width_style.width/]">
                <n.default. to="[t]Name[/t]"><n.title/></n.default.>
            </td>
        </head>
        <body>
            <td class="weak-color">
                <table class="avatar-table">
                    <tr>
                        <td style="padding:0;vertical-align:top">
                            <n.current_user.avatar size="small"/>
                        </td>
                        <td class="nowrap" style="width:100%;padding:0 .3em">
                            <n.current_user.user_link/>
                        </td>
                    </tr>
                </table>
            </td>
        </body>
    </n.table_column>
</macro>