This is an automated email from the ASF dual-hosted git repository.

arm pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tooling-trusted-releases.git


The following commit(s) were added to refs/heads/main by this push:
     new ffab72b  Add revision number to recent tasks list
ffab72b is described below

commit ffab72b2f14032fd5e2b4ca6ab10dff827c821a7
Author: Alastair McFarlane <[email protected]>
AuthorDate: Wed Dec 10 14:26:28 2025 +0000

    Add revision number to recent tasks list
---
 atr/admin/__init__.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/atr/admin/__init__.py b/atr/admin/__init__.py
index 7a58b44..5b86ea6 100644
--- a/atr/admin/__init__.py
+++ b/atr/admin/__init__.py
@@ -746,6 +746,7 @@ async def tasks_recent(session: web.Committer, minutes: 
int) -> str:
                 htpy.th["Added"],
                 htpy.th["Project"],
                 htpy.th["Version"],
+                htpy.th["Revision"],
                 htpy.th["Error"],
             ]
         ]
@@ -766,6 +767,7 @@ async def tasks_recent(session: web.Committer, minutes: 
int) -> str:
                     htpy.td[task.added.strftime("%H:%M:%S") if task.added else 
""],
                     htpy.td[task.project_name or ""],
                     htpy.td[task.version_name or ""],
+                    htpy.td[task.revision_number or ""],
                     htpy.td[error_text],
                 ]
             )


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to