- sendcoins

- font
- catalogo
This commit is contained in:
Surya Paolo
2025-03-26 23:23:48 +01:00
parent 76bacf3f5a
commit 789dc1dcae
14 changed files with 118 additions and 27 deletions

View File

@@ -295,7 +295,7 @@ const getTableContent = async (options) => {
// Se c'è un solo record, visualizza una lista di chiavi e valori
const record = records[0];
output += `
<table border='1' style="border-collapse: collapse; width: 50%;" >
<table border='1' style="border-collapse: collapse;" >
<thead>
<tr>
<th style="padding: 8px; background-color: #f2f2f2;">Campo</th>
@@ -419,8 +419,11 @@ exports.viewTable = async (req, res) => {
if (options.outhtml) {
out = `
<h2>Tabella: ${options.nameTable}</h2>
${tableContent}
<h2 class="text-center">Tabella: ${options.nameTable}</h2>
<div class="text-h7 row justify-center text-blue">Query: ${options.where}<br></div>
<div class="row justify-center">
${tableContent}
</div>
`
} else {
out = tableContent;
@@ -445,6 +448,7 @@ exports.queryTable = async (req, res) => {
if (options.outhtml) {
out = `
<h2>Tabella: ${options.nameTable}</h2>
<div class="text-h7 row justify-center text-blue">Query: ${options.where}<br></div>
${tableContent}
`
} else {