From 21983971971b14377b36c8db92c8603f723f955d Mon Sep 17 00:00:00 2001
From: Ali Golzar <57574919+aliglzr@users.noreply.github.com>
Date: Wed, 27 Aug 2025 21:00:49 +0330
Subject: Created / Updated fields for clients (#3384)
* feat(backend): add created_at/updated_at to clients and maintain on create/update
backfill existing clients and set updated_at on mutations
* feat(frontend): carry created_at/updated_at in client models and round-trip via JSON
* feat(frontend): display Created and Updated columns in client table with proper date formatting
* i18n: add pages.inbounds.createdAt/updatedAt across all locales
* Update inbound.go
Remove duplicate code
---
web/html/component/aClientTable.html | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
(limited to 'web/html/component/aClientTable.html')
diff --git a/web/html/component/aClientTable.html b/web/html/component/aClientTable.html
index 96bd502f..359e6e74 100644
--- a/web/html/component/aClientTable.html
+++ b/web/html/component/aClientTable.html
@@ -278,4 +278,30 @@
+
+
+
+ [[ DateUtil.formatMillis(client.created_at) ]]
+
+
+ [[ DateUtil.convertToJalalian(moment(client.created_at)) ]]
+
+
+
+ -
+
+
+
+
+
+ [[ DateUtil.formatMillis(client.updated_at) ]]
+
+
+ [[ DateUtil.convertToJalalian(moment(client.updated_at)) ]]
+
+
+
+ -
+
+
{{end}}
--
cgit v1.2.3