Add place on the page for checkboxes and other controls to go
authorKarl O. Pinc <kop@karlpinc.com>
Wed, 18 Sep 2024 16:16:57 +0000 (11:16 -0500)
committerKarl O. Pinc <kop@karlpinc.com>
Wed, 18 Sep 2024 16:16:57 +0000 (11:16 -0500)
src/pgwui_common/templates/auth_base.mak

index 2a6864218e3f533692be772a1bd75c1a778dd7bf..7217d0bcb74b33cab343c7506ea2af6110241998 100644 (file)
   %>
 </%def>
 
+<%def name="controls(tab_index)">
+</%def>
+
 <%def name="main_form(tab_index, target=None, action='')">
   <form ${f'target="{target}"' if target else '' | n}
         action="${action}" enctype="multipart/form-data" method="post">
       <%self:table_rows tab_index="${tab_index}" args="tab_index"/>
     </table>
 
+    ${self.controls(tab_index)}
+
     <p>
       ${self.submit(tab_index)}
     </p>