+ [task#144533] add backup type info in backup detial page.

This commit is contained in:
liyang
2025-06-25 15:07:28 +08:00
parent 0f6938fc40
commit cac38481cd
+19
View File
@@ -28,5 +28,24 @@ div
(
!empty($backup->message) ? sectionList(div(setClass('w-full text-center pt-10'), sprintf($lang->system->backup->error->backupFailNotice, $backup->message))) : sectionList
(
empty($backupList) ? div(setClass('w-full text-center pt-10'), $lang->noData) : div
(
setClass('flex-none'),
h::table
(
setClass('table w-full max-w-full bordered text-center'),
h::thead
(
h::tr
(
h::th($lang->system->backup->type),
h::th($lang->system->backup->backupName),
h::th($lang->system->backup->size),
h::th($lang->system->backup->status)
)
),
)
)
)
);