From 35aa781c902918379950156d07f56700498c0d94 Mon Sep 17 00:00:00 2001 From: Alex <40072887+alexdcrane@users.noreply.github.com> Date: Mon, 10 Mar 2025 10:26:27 -0600 Subject: [PATCH] Add content card to device export and pin numbers (#7297) * Add content card to device export and pin numbers * Update pin_numbers.php * Update pin_number_edit.php * Update device_download.php --- app/devices/device_download.php | 4 +++- app/pin_numbers/pin_number_edit.php | 12 +++++++----- app/pin_numbers/pin_numbers.php | 5 +++-- 3 files changed, 13 insertions(+), 8 deletions(-) diff --git a/app/devices/device_download.php b/app/devices/device_download.php index fdac9dcbb9..529e24cb0f 100644 --- a/app/devices/device_download.php +++ b/app/devices/device_download.php @@ -17,7 +17,7 @@ The Initial Developer of the Original Code is Mark J Crane - Portions created by the Initial Developer are Copyright (C) 2008-2023 + Portions created by the Initial Developer are Copyright (C) 2008-2025 the Initial Developer. All Rights Reserved. Contributor(s): @@ -252,6 +252,7 @@ $x = 0; foreach ($available_columns as $table_name => $columns) { $table_name_label = ucwords(str_replace(['-','_',],' ', $table_name)); + echo "
\n"; echo "
\n"; echo "".$table_name_label."\n"; echo "
\n"; @@ -284,6 +285,7 @@ echo "\n"; echo "
\n"; echo "
\n"; + echo "
\n"; } } diff --git a/app/pin_numbers/pin_number_edit.php b/app/pin_numbers/pin_number_edit.php index d6a9455ca4..386b0c5dcc 100644 --- a/app/pin_numbers/pin_number_edit.php +++ b/app/pin_numbers/pin_number_edit.php @@ -17,7 +17,7 @@ The Initial Developer of the Original Code is Mark J Crane - Portions created by the Initial Developer are Copyright (C) 2016-2023 + Portions created by the Initial Developer are Copyright (C) 2016-2025 the Initial Developer. All Rights Reserved. Contributor(s): @@ -168,6 +168,7 @@ if (count($_POST)>0 && empty($_POST["persistformvar"])) { echo "
\n"; echo "\n"; + echo "
\n"; echo "\n"; echo "\n"; @@ -217,17 +218,18 @@ if (count($_POST)>0 && empty($_POST["persistformvar"])) { echo "\n"; echo "\n"; - echo "
"; - echo "

"; + echo "\n"; + echo "
\n"; + echo "

\n"; if ($action == "update") { echo "\n"; } echo "\n"; - echo ""; + echo "\n"; //include the footer require_once "resources/footer.php"; -?> \ No newline at end of file +?> diff --git a/app/pin_numbers/pin_numbers.php b/app/pin_numbers/pin_numbers.php index 71eae27815..a2aaba0af9 100644 --- a/app/pin_numbers/pin_numbers.php +++ b/app/pin_numbers/pin_numbers.php @@ -17,7 +17,7 @@ The Initial Developer of the Original Code is Mark J Crane - Portions created by the Initial Developer are Copyright (C) 2016-2020 + Portions created by the Initial Developer are Copyright (C) 2016-2025 the Initial Developer. All Rights Reserved. Contributor(s): @@ -170,6 +170,7 @@ echo "\n"; echo "\n"; + echo "
\n"; echo "\n"; echo "\n"; if (permission_exists('pin_number_add') || permission_exists('pin_number_edit') || permission_exists('pin_number_delete')) { @@ -234,6 +235,7 @@ unset($pin_numbers); echo "
\n"; + echo "
\n"; echo "
\n"; echo "
".$paging_controls."
\n"; @@ -245,4 +247,3 @@ require_once "resources/footer.php"; ?> -