mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-22 09:22:22 +00:00
This commit is contained in:
@@ -136,11 +136,11 @@ echo '
|
||||
<tr>
|
||||
<th>'.$p->t('tools/ampelStatus').'</th>
|
||||
<th>'.$p->t('tools/ampelBeschreibung').'</th>
|
||||
<th>'.$p->t('global/organisationseinheit').'</th>
|
||||
<th>'.$p->t('tools/ampelMitarbeiter').'</th>
|
||||
<th>'.$p->t('global/organisationseinheit').'</th>
|
||||
<th>'.$p->t('tools/ampelBestaetigtAm').'</th>
|
||||
<th>'.$p->t('tools/ampelRestdauer').'</th>
|
||||
<th>'.$p->t('tools/ampelDeadline').'</th>
|
||||
<th>'.$p->t('tools/ampelRestdauer').'</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@@ -194,13 +194,19 @@ foreach($ampel->result as $row)
|
||||
if($beschreibung=='' && isset($row->beschreibung[DEFAULT_LANGUAGE]))
|
||||
$beschreibung = $row->beschreibung[DEFAULT_LANGUAGE];
|
||||
echo '<td>'.$beschreibung.'</td>';
|
||||
$institut = $row->oe_kurzbz;
|
||||
echo '<td>'.$institut.'</td>';
|
||||
|
||||
$name = $row->titelpre.' '.$row->vorname.' '.$row->nachname.' '.$row->titelpost;
|
||||
echo '<td>'.$name.'</td>';
|
||||
$institut = $row->oe_kurzbz;
|
||||
echo '<td>'.$institut.'</td>';
|
||||
echo '<td>'.$datum_obj->formatDatum($row->insertamum_best,'d.m.Y').'</td>';
|
||||
echo '<td>'.(($ts_deadline-$ts_now)/86400).'</td>';
|
||||
echo '<td>'.$datum_obj->formatDatum($row->deadline,'d.m.Y').'</td>';
|
||||
|
||||
//Restdauer wird nur angezeigt, wenn noch nicht bestaetigt
|
||||
if($bestaetigt)
|
||||
echo '<td></td>';
|
||||
else
|
||||
echo '<td>'.(($ts_deadline-$ts_now)/86400).'</td>';
|
||||
echo '</tr>';
|
||||
}
|
||||
echo '</tbody></table>';
|
||||
|
||||
+1
-1
@@ -554,7 +554,7 @@ function drawKategorieMenue($rows)
|
||||
$locked='';
|
||||
if(count($groups)>0)
|
||||
{
|
||||
$locked = '<img src="../skin/images/login.gif" height="12px" title="Zugriff nur für Mitglieder folgender Verteiler:';
|
||||
$locked = '<img src="../skin/images/login.gif" height="12px" title="Zugriff nur für Mitglieder folgender Gruppen:';
|
||||
foreach($groups as $group)
|
||||
$locked.=" $group ";
|
||||
$locked.='"/>';
|
||||
|
||||
Reference in New Issue
Block a user