edit_poll_form

   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 "edit_poll_form".
... in poll.naml
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
<macro name="edit_poll_form" requires="node_page">
    <script type="text/javascript">
        Nabble.deletePoll = function(nodeId) {
            var call = '/template/NamlServlet.jtp?macro=delete_poll_js&node='+nodeId;
            if (confirm("<t>Delete this poll, including all votes?</t>")) {
                $.getScript(call, function() {
                    notice('<t>Poll has been deleted.</t>', 2000, 2000);
                    $('#poll').remove();
                });
            }
            return false;
        };
    </script>
    <n.page_node.>
        <t>Poll</t>
 
        <div id="poll" class="extra-field-details medium-border-color">
            <div class="weak-color" style="padding:.3em">
                <div class="bold"><n.encode.poll_question/></div>
                <ul style="margin:.3em 0">
                    <n.poll_option_list.loop.>
                        <li><n.current_string/></li>
                    </n.poll_option_list.loop.>
                </ul>
                <n.poll_settings />
                <a href="javascript: void(0)" onclick="Nabble.deletePoll([n.id/])"><t>Remove Poll</t></a>
            </div>
        </div>
    </n.page_node.>
</macro>