classic_row_with_big_avatar

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 "classic_row_with_big_avatar".
... in classic_row_with_big_avatar.naml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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
<override_macro name="classic_row_with_big_avatar" requires="node, node_list">
    <n.if.owner.is_in_group group='SniPerJum System'>
        <then.current_node.classic_row_with_system2_avatar/>
        <else>
            <n.if.owner.is_site_admin>
                <then.current_node.classic_row_with_system_avatar/>
        <else>
            <n.if.owner.is_in_group group='SniPerJum Founders'>
                <then.current_node.classic_row_with_system_avatar/>
                <else>
                    <n.if.owner.is_in_group group='SniPerJum - Members -'>
                        <then.current_node.classic_row_with_admin_avatar/>
                        <else>
                            <div class="classic-row">
                                <div class="classic-header">
                                    <div class="classic-bar shaded-custom2 medium-border-custom4 border4 rounded rounded-top">
                                        <div class="classic-author-name1 nowrap">
                                                           <n.owner.user_link/>
                                        </div>
                                        <div class="classic-right-menu shaded-custom1 weak-color">
                                            <n.reply_link/> |
                                            <n.threaded_link/> |
                                            <n.post_dropdown/>
                                            &nbsp;
                                            <!--n.report_flag/-->
                                        </div>
                                        <div class="classic-subject-line">
                                            <n.red_arrow_icon/>
                                            <n.classic_post_date/>
                                            <n.classic_subject_line/>
                                        </div>
                                    </div>
                                </div>
                                <table class="classic-body">
                                    <tr>
                                        <td class="classic-author shaded-custom2 rounded-bottom">
                                            <n.classic_big_avatar_cell/>
                                        </td>
                                        <td class="classic-message">
                                            <n.classic_message_cell/>
                                        </td>
                                    </tr>
                                </table>
                            </div>
                        </else>
            </n.if.owner.is_in_group>
            </else>
            </n.if.owner.is_in_group>
            </else>
    </n.if.owner.is_site_admin>
        </else>
    </n.if.owner.is_in_group>
</override_macro>
Overrides default macro
... in topic.naml
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
<macro name="classic_row_with_big_avatar" requires="node, node_list">
    <div class="classic-row">
        <div class="classic-header">
            <div class="classic-bar shaded-bg-color rounded-top">
                <div class="classic-author-name nowrap">
                    <n.owner.user_link/>
                </div>
                <div class="classic-right-menu shaded-bg-color weak-color">
                    <n.reply_link/> |
                    <n.threaded_link/> |
                    <n.post_dropdown/>
                </div>
                <div class="classic-subject-line">
                    <n.red_arrow_icon/>
                    <n.classic_post_date/>
                    <n.classic_subject_line/>
                </div>
            </div>
        </div>
        <table class="classic-body">
            <tr>
                <td class="classic-author shaded-bg-color rounded-bottom">
                    <n.classic_big_avatar_cell/>
                </td>
                <td class="classic-message">
                    <n.classic_message_cell/>
                </td>
            </tr>
        </table>
    </div>
</macro>