big_avatar_label

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 "big_avatar_label".
... in big_avatar_labels.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<macro name="big_avatar_label">
    <div style="color: white;font-size: 95%;margin: .3em 0;padding: 0 .3em;border: none;padding-top: .5em;font-family: Verdana;">
    <n.if.owner.is_in_group group='Members'>
        <then>
                <span class="weak-color" style="color:#4D410D;">·</span>
                <span class="weak-color" style="color:white;">Member</span>
                <span class="weak-color" style="color:#4D410D;">·</span>
        </then>
        <else>
            <n.if.owner.is_in_group group='SniPerJum Moderators'>
                <then>
                        <span class="weak-color" style="color:#4D410D;">-</span>
                        <span class="weak-color" style="color:white;">Moderator</span>
                        <span class="weak-color" style="color:#9A831B;">-</span>
                </then>
                <else>
                    <n.if.owner.is_in_group group='SniPerJum Admins'>
                        <then>
                            <div class="weak-color" style="color:white;margin-top: .1em;margin-left: .3em;">
                                <span class="weak-color" style="color:#4D410D;">=</span>
                                <span class="weak-color" style="color:white;">Admin</span>
                                <span class="weak-color" style="color:#4D410D;">=</span>
                            </div>
                        </then>
                        <else>
                            <n.if.owner.is_in_group group='SniPerJum Full Admins'>
                                <then>
                                    <div class="weak-color" style="color:white;margin-top: .1em;margin-left: .3em;">
                                        <span class="weak-color" style="color:#9A831B;">·=</span>
                                        <span class="weak-color" style="color:white;">Full Admin</span>
                                        <span class="weak-color" style="color:#9A831B;">=·</span>
                                    </div>
                                </then>
                                <else>
                                    <n.if.owner.is_in_group group='SniPerJum Senior Admins'>
                                        <then>
                                                <span class="weak-color" style="color:#E8C529;">-=</span>
                                                <span class="weak-color" style="color:white;">Senior Admin</span>
                                                <span class="weak-color" style="color:#E8C529;">=-</span>
                                        </then>
                                        <else>
                                            <n.if.owner.is_in_group group='SniPerJum Founders'>
                                                <then>
                                                    <div class="weak-color" style="color:white;margin-top: .1em;margin-left: .3em;">
                                                        <span class="weak-color" style="color:#E8C529;">-·=·</span>
                                                        <span class="weak-color" style="color:white;">Co-Founder</span>
                                                        <span class="weak-color" style="color:#E8C529;">·=·-</span>
                                                    </div>
                                                </then>
                                                <else>
                                                    <n.if.owner.is_in_group group='SniPerJum Head Founder'>
                                                        <then>
                                                            <div class="weak-color" style="color:white;margin-top: .1em;margin-left: .3em;">
                                                                <span class="weak-color" style="color:#E8C529;">-·=·:</span>
                                                                <span class="weak-color" style="color:white;">Founder</span>
                                                                <span class="weak-color" style="color:#E8C529;">:·=·-</span>
                                                            </div>
                                                        </then>
                                                        <else>
                                                            <n.if.owner.is_in_group group='Leaders'>
                                                                <then>
                                                                    <div class="weak-color" style="color:white;margin-top: .1em;margin-left: .3em;">
                                                                        <span class="weak-color" style="color:#E8C529;">-·=·</span>
                                                                        <span class="weak-color" style="color:white;">Leader</span>
                                                                        <span class="weak-color" style="color:#E8C529;">·=·-</span>
                                                                    </div>
                                                                </then>
                                                                <else>
                                                                </else>
                                                            </n.if.owner.is_in_group>
                                                        </else>
                                                    </n.if.owner.is_in_group>
                                                </else>
                                            </n.if.owner.is_in_group>
                                        </else>
                                    </n.if.owner.is_in_group>
                                </else>
                            </n.if.owner.is_in_group>
                        </else>
                    </n.if.owner.is_in_group>
                </else>
            </n.if.owner.is_in_group>
        </else>
    </n.if.owner.is_in_group>
</div>
</macro>