diff options
Diffstat (limited to 'core/views/admin_maintenance.html.php')
-rw-r--r-- | core/views/admin_maintenance.html.php | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/core/views/admin_maintenance.html.php b/core/views/admin_maintenance.html.php index c2e28276..2570dcee 100644 --- a/core/views/admin_maintenance.html.php +++ b/core/views/admin_maintenance.html.php @@ -56,6 +56,9 @@ <?= t("Info") ?> </th> <th> + <?= t("Owner") ?> + </th> + <th> <?= t("Action") ?> </th> </tr> @@ -83,6 +86,9 @@ <?= $task->status ?> </td> <td> + <?= $task->user_name ?> + </td> + <td> <? if ($task->state == "stalled"): ?> <a href="<?= url::site("admin/maintenance/resume/$task->id?csrf=$csrf") ?>" class="gDialogLink"> <?= t("resume") ?> @@ -115,6 +121,9 @@ <?= t("Info") ?> </th> <th> + <?= t("Owner") ?> + </th> + <th> <?= t("Action") ?> </th> </tr> @@ -139,6 +148,9 @@ <?= $task->status ?> </td> <td> + <?= $task->user_name ?> + </td> + <td> <? if ($task->done): ?> <a href="<?= url::site("admin/maintenance/remove/$task->id?csrf=$csrf") ?>"> <?= t("remove") ?> |