- added title tag to icons

- show id if logged in as admin
This commit is contained in:
steinm 2013-02-07 21:40:46 +00:00
parent 586751c4e3
commit 3833e0da1a

View File

@ -129,6 +129,14 @@ class LetoDMS_View_ViewDocument extends LetoDMS_Bootstrap_Style {
$this->contentContainerStart();
?>
<table class="table-condensed">
<?php
if($user->isAdmin()) {
echo "<tr>";
echo "<td>".getMLText("id").":</td>\n";
echo "<td>".htmlspecialchars($document->getID())."</td>\n";
echo "</tr>";
}
?>
<tr>
<td><?php printMLText("name");?>:</td>
<td><?php print htmlspecialchars($document->getName());?></td>