Commit c99bdecbf43f0da479dd2a183aabfd48e925729d

Authored by michael
1 parent 4d28112f

moved days checked out to the left


git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@1373 c91229c3-7414-0410-bfa2-8a42b809f60b
presentation/lookAndFeel/knowledgeTree/dashboardUI.inc
@@ -61,7 +61,7 @@ function renderCheckedOutDocuments($aCheckedOutDocumentList) { @@ -61,7 +61,7 @@ function renderCheckedOutDocuments($aCheckedOutDocumentList) {
61 $sToRender .= "<th align=\"left\" width=\"66%\" class=\"sectionColumns\">\n"; 61 $sToRender .= "<th align=\"left\" width=\"66%\" class=\"sectionColumns\">\n";
62 $sToRender .= "Title\n"; 62 $sToRender .= "Title\n";
63 $sToRender .= "</th>\n"; 63 $sToRender .= "</th>\n";
64 - $sToRender .= "<th align=\"left\" width=\"33%\" class=\"sectionColumns\">\n"; 64 + $sToRender .= "<th align=\"right\" width=\"33%\" class=\"sectionColumns\">\n";
65 $sToRender .= "Days\n"; 65 $sToRender .= "Days\n";
66 $sToRender .= "</th>"; 66 $sToRender .= "</th>";
67 $sToRender .= "\t\t</tr>\n"; 67 $sToRender .= "\t\t</tr>\n";
@@ -71,7 +71,7 @@ function renderCheckedOutDocuments($aCheckedOutDocumentList) { @@ -71,7 +71,7 @@ function renderCheckedOutDocuments($aCheckedOutDocumentList) {
71 $oDocument = $aCheckedOutDocumentList[$i]; 71 $oDocument = $aCheckedOutDocumentList[$i];
72 $sToRender .= "\t<tr>\n"; 72 $sToRender .= "\t<tr>\n";
73 $sToRender .= "<td nowrap>" . generateControllerLink("viewDocument", "fDocumentID=" . $oDocument->getID(), "<img src=\"$default->graphicsUrl/widgets/dstatus.gif\" border=\"0\"/>&nbsp;" . $oDocument->getDisplayPath()) . "</td>\n"; 73 $sToRender .= "<td nowrap>" . generateControllerLink("viewDocument", "fDocumentID=" . $oDocument->getID(), "<img src=\"$default->graphicsUrl/widgets/dstatus.gif\" border=\"0\"/>&nbsp;" . $oDocument->getDisplayPath()) . "</td>\n";
74 - $sToRender .= "<td>" . $oDocument->getDaysSinceLastModified() . "</td>\n"; 74 + $sToRender .= "<td align=right>" . $oDocument->getDaysSinceLastModified() . "</td>\n";
75 $sToRender .= "\t</tr>\n"; 75 $sToRender .= "\t</tr>\n";
76 } 76 }
77 return $sToRender; 77 return $sToRender;