Use proper mako markup when invoking self.lib
authorKarl O. Pinc <kop@karlpinc.com>
Thu, 26 Sep 2024 15:17:00 +0000 (10:17 -0500)
committerKarl O. Pinc <kop@karlpinc.com>
Thu, 26 Sep 2024 15:17:00 +0000 (10:17 -0500)
src/pgwui_sql/templates/sql.mak

index 2266cbd9846fe92645c87e1d7a3a768cfdbc51a7..c916419ea869192f85084da04bb76d151bda3df6 100644 (file)
     % endfor
     <div class="stickyfooting">
       <hr>
-      <self.lib:td_label for_id="show_rules_id">
+      <%self.lib:td_label for_id="show_rules_id">
         Show rules
-      </self.lib:td_label>
-      <self.lib:td_input tab_index="${tab_index}">
+      </%self.lib:td_label>
+      <%self.lib:td_input tab_index="${tab_index}">
         <input name="show_rules"
                id="show_rules_id"
                tabindex="${tab_index.val}"
                ${show_rules | n}
                onchange="rulesDisplay(this.checked)"
         />
-      </self.lib:td_input>
+      </%self.lib:td_input>
 
-      <self.lib:td_label for_id="show_spaces_id">
+      <%self.lib:td_label for_id="show_spaces_id">
         Show spaces
-      </self.lib:td_label>
-      <self.lib:td_input tab_index="${tab_index}">
+      </%self.lib:td_label>
+      <%self.lib:td_input tab_index="${tab_index}">
         <input name="show_spaces"
                id="show_spaces_id"
                tabindex="${tab_index.val}"
                ${show_spaces | n}
                onchange="whitespaceDisplay(this.checked)"
         />
-      </self.lib:td_input>
+      </%self.lib:td_input>
     </div>
   </div>
 </%def>