From: Karl O. Pinc Date: Tue, 30 Jul 2024 17:19:33 +0000 (-0500) Subject: Use more clear markup X-Git-Url: https://papio.biology.duke.edu/gitweb/?a=commitdiff_plain;h=e4c29b8909e39996bec199eaccabfc9f1989da26;p=pgwui_common Use more clear markup --- diff --git a/src/pgwui_common/templates/auth_base.mak b/src/pgwui_common/templates/auth_base.mak index dfbed02..1856ce8 100644 --- a/src/pgwui_common/templates/auth_base.mak +++ b/src/pgwui_common/templates/auth_base.mak @@ -195,18 +195,20 @@ % endif - <% tab_index = TabIndex() %> - ${database_row(tab_index)} - ${self.auth_parts.user_row(tab_index.val + 1, havecreds, user)} - ${self.auth_parts.password_row(tab_index.val + 2, havecreds)} - <% tab_index.inc(2) %> - - ${caller.body(tab_index)} - - ${format_row(tab_index)} - ${nulls_row(tab_index)} - ${file_row(tab_index)} + <% + tab_index = TabIndex() + database_row(tab_index) + self.auth_parts.user_row(tab_index.val + 1, havecreds, user) + self.auth_parts.password_row(tab_index.val + 2, havecreds) + tab_index.inc(2) + + caller.body(tab_index) + + format_row(tab_index) + nulls_row(tab_index) + file_row(tab_index) + %>