diff options
Diffstat (limited to 'buildmaster/status.php')
-rw-r--r-- | buildmaster/status.php | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/buildmaster/status.php b/buildmaster/status.php index 28eee69..d58d379 100644 --- a/buildmaster/status.php +++ b/buildmaster/status.php @@ -9,19 +9,20 @@ ?> <html> -<head> -<title>Build master status</title> -<link rel="stylesheet" type="text/css" href="/static/style.css"> -</head> -<body> -<a href="https://buildmaster.archlinux32.org/">Start page</a><br> + <head> + <title>Build master status</title> + <link rel="stylesheet" type="text/css" href="/static/style.css"> + </head> + <body> +<?php show_warning_on_offline_slave(); ?> + <a href="https://buildmaster.archlinux32.org/">Start page</a><br> <?php if ($result -> num_rows > 0) { $row = $result->fetch_assoc(); - print "latest package source is from " . $row["last"] . ".<br>\n"; + print " latest package source is from " . $row["last"] . ".<br>\n"; } ?> -</body> + </body> </html> |