topic_controls

NAML documentation   Watch a video
Error Found
An error was found in the NAML code of this application – View Details | Go to NAML Editor
tag 'mailing_list_etiquette' is not an allowed here, only these are allowed: [bottom, page_name, focus]
  in new_post(custom_tweak:reply:2) - <n.new_post>
  in (custom_tweak:reply:1) - <override_macro name="reply" requires="servlet">
   Usages of this macro
... in responsive.naml
170
171
172
173
174
175
176
177
178
179
<override_macro name="topic_controls" requires="forum_topic_namespace">
    <div class="topics-controls-wrapper" style="margin:1.2em 0 5em">
        <div id="topics-controls-left" class="float-left nowrap">
            <n.topic_controls_left
Macro
Requires: forum_topic_namespace
/>
        </div>
        <div id="topics-controls-right" class="float-right nowrap" style="padding-top:.3em">
            <n.topic_controls_right
Macro
Requires: forum_topic_namespace
/>
        </div>
    </div>
</override_macro>
Overrides default macro
... in topic.naml
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
<macro name="topic_controls" requires="forum_topic_namespace">
    <div style="margin:1.2em 0 5em">
        <div id="topics-controls-left" class="float-left nowrap">
            <n.topic_controls_left/>
        </div>
        <div id="topics-controls-right" class="float-right nowrap" style="padding-top:.3em">
            <n.topic_controls_right/>
        </div>
    </div>
</macro>