show_subscription_error

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 "show_subscription_error".
... in subscribe.naml
212
213
214
215
216
217
218
219
220
221
222
223
224
<macro name="show_subscription_error" requires="node_page">
    <n.format_error.handle_exception. for="send-email-block">
        <n.exception. name="invalid_email">
            <t>Enter a valid email address.</t>
        </n.exception.>
        <n.exception. name="not_authorized">
            <t>Sorry, but this email is not authorized to view messages under <t.location.page_node.subject/>.</t>
        </n.exception.>
        <n.exception. name="already_subscribed">
            <t>This email is already subscribed.</t>
        </n.exception.>
    </n.format_error.handle_exception.>
</macro>