web: show host product name to owner

This commit is contained in:
David Anderson 2013-06-26 16:23:50 -07:00
parent 2ad0e83417
commit 85245f1802
1 changed files with 3 additions and 0 deletions

View File

@ -117,6 +117,9 @@ function show_host($host, $user, $ipprivate) {
row2(tra("Coprocessors"), gpu_desc($host->serialnum)); row2(tra("Coprocessors"), gpu_desc($host->serialnum));
} }
row2(tra("Operating System"), "$host->os_name <br> $host->os_version"); row2(tra("Operating System"), "$host->os_name <br> $host->os_version");
if ($user && $host->product_name) {
row2(tra("Product name"), $host->product_name);
}
$v = boinc_version($host->serialnum); $v = boinc_version($host->serialnum);
if ($v) { if ($v) {
row2(tra("BOINC version"), $v); row2(tra("BOINC version"), $v);