diff --git a/app/DataTables/WorklistDataTable.php b/app/DataTables/WorklistDataTable.php
index 0491b89..da16c07 100644
--- a/app/DataTables/WorklistDataTable.php
+++ b/app/DataTables/WorklistDataTable.php
@@ -8,6 +8,7 @@
use App\Services\ACL\WorklistButton;
use App\Services\ACL\WorklistColumn;
use App\Services\ACL\WorklistGuard;
+use App\Services\GeoLocation;
use Carbon\Carbon;
use Carbon\CarbonImmutable;
use Closure;
@@ -514,8 +515,12 @@ private function renderCustomColumns(): array
break;
case WorklistColumn::DicomServer:
$columns[$col->value] = function (Study $study) {
- return sprintf('%s',
+ $country = GeoLocation::name(strtoupper($study->dicomServer->geo_code));
+
+ return sprintf('%s',
strtolower($study->dicomServer->geo_code),
+ $country,
+ $country,
$study->dicomServer->server_name);
};
break;