assign_html

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 "assign_html".
... in assign_html.naml
1
2
3
4
5
6
7
8
9
10
11
<override_macro name="assign_html" requires="node_page">
    <n.page_node.html_email_message_with_signature/>
    <br/>
    <br/>
    <hr noshade="noshade" size="1" color="#cccccc" />
    <div style="color:#FF0000;font: 11px tahoma,geneva,helvetica,arial,sans-serif;margin-bottom:1.5em;line-height:1.5em">
        <t>You have been tagged.  </t>
        <t>View message</t> @ <a href="[n.page_node.url/]"><n.page_node.url/></a><br/>
        <n.macro_viewer_email_link macro="assign_html"/>
    </div>
</override_macro>
Overrides default macro
... in email.naml
115
116
117
118
119
120
121
122
123
124
125
<macro name="assign_html" requires="node_page">
    <n.page_node.html_email_message_with_signature/>
    <br/>
    <br/>
    <hr noshade="noshade" size="1" color="#cccccc" />
    <div style="color:#666666;font: 11px tahoma,geneva,helvetica,arial,sans-serif;margin-bottom:1.5em;line-height:1.5em">
        <t>This topic is assigned to you at priority <t.priority><div style="[n.priority_style/]"><n.topic_priority/></div></t.priority></t><br/>
        <t>View message</t> @ <a href="[n.page_node.url/]"><n.page_node.url/></a><br/>
        <n.macro_viewer_email_link macro="assign_html"/>
    </div>
</macro>