|
From: <mr_...@us...> - 2004-01-13 19:13:06
|
Update of /cvsroot/stud/stud
In directory sc8-pr-cvs1:/tmp/cvs-serv26517
Modified Files:
admin_booking
Log Message:
RFE:744485. Update to use new icons in inventory list.
Index: admin_booking
===================================================================
RCS file: /cvsroot/stud/stud/admin_booking,v
retrieving revision 1.26
retrieving revision 1.27
diff -C2 -d -r1.26 -r1.27
*** admin_booking 13 Jan 2004 12:26:00 -0000 1.26
--- admin_booking 13 Jan 2004 19:13:03 -0000 1.27
***************
*** 991,999 ****
++$noLocked;
} elsif ($$state{"$club-$category-$$items[$i][0]"} == 2) {
! $ball = "<img src=".StudIni::getImgPath()."ball_booked.gif width=12 height=12>";
++$noBooked;
} else {
! $ball = "<img src=".StudIni::getImgPath()."ball_unbooked.gif width=12 height=12>";
++$noUnbooked;
}
--- 991,999 ----
++$noLocked;
} elsif ($$state{"$club-$category-$$items[$i][0]"} == 2) {
! $ball = "<img src=".StudIni::getImgPath()."inv_booked.gif width=12 height=12>";
++$noBooked;
} else {
! $ball = "<img src=".StudIni::getImgPath()."inv_unbooked.gif width=12 height=12>";
++$noUnbooked;
}
***************
*** 1014,1019 ****
print "<tr><td colspan=$no_cols><b>Number of locked items <img src=".StudIni::getImgPath()."padlock.gif width=12 height=15> :</b> $noLocked</td></tr>\n";
! print "<tr><td colspan=$no_cols><b>Number of booked items <img src=".StudIni::getImgPath()."ball_booked.gif width=12 height=12> :</b> $noBooked</td></tr>\n";
! print "<tr><td colspan=$no_cols><b>Number of unbooked items <img src=".StudIni::getImgPath()."ball_unbooked.gif width=12 height=12> :</b> $noUnbooked</td></tr>\n";
print "</table>\n";
}
--- 1014,1019 ----
print "<tr><td colspan=$no_cols><b>Number of locked items <img src=".StudIni::getImgPath()."padlock.gif width=12 height=15> :</b> $noLocked</td></tr>\n";
! print "<tr><td colspan=$no_cols><b>Number of booked items <img src=".StudIni::getImgPath()."inv_booked.gif width=12 height=12> :</b> $noBooked</td></tr>\n";
! print "<tr><td colspan=$no_cols><b>Number of unbooked items <img src=".StudIni::getImgPath()."inv_unbooked.gif width=12 height=12> :</b> $noUnbooked</td></tr>\n";
print "</table>\n";
}
|