/* The box holding the textarea of the search_path */
.search_path_data { width: 20em; }
+
+/* The "breaks" between sql statement results; very light horizontal rules */
+.innerbreak { border-style: dotted;
+ border-bottom: 0px;
+ color: lightgrey; }
command_result = []
status_result = []
%>
+
+ <% stmt_break = '<hr>' %>
% for result_row in result_rows:
- <hr>
+ ${stmt_break | n}
+ <% stmt_break = '<hr class="innerbreak">' %>
+
% if result_row.statusmessage is not None:
<p class="sql_status">
${result_row.statusmessage.data.split(' ')[0]}</p>