Fix Notifiche interne

This commit is contained in:
Thomas Zilio 2019-07-30 17:11:59 +02:00
parent f77dbf5c99
commit abdcb18e14
1 changed files with 9 additions and 3 deletions

View File

@ -43,22 +43,28 @@ foreach ($moduli as $module_id => $note) {
<th width="5%" >'.tr('Record').'</th> <th width="5%" >'.tr('Record').'</th>
<th>'.tr('Contenuto').'</th> <th>'.tr('Contenuto').'</th>
<th width="20%" class="text-center">'.tr('Data di notifica').'</th> <th width="20%" class="text-center">'.tr('Data di notifica').'</th>
<th class="text-center">#</th>
</tr>'; </tr>';
foreach ($note as $nota) { foreach ($note as $nota) {
echo ' echo '
<tr> <tr>
<td>'.$nota->id_record.'</td> <td>'.$nota->id_record.'</td>
<td> <td>
<span class="pull-right">'.Modules::link($module_id, $nota->id_record, null, null, null, true, 'tab_note').'</span> <span class="pull-right"></span>
'.$nota->content.' '.$nota->content.'
<small>'.$nota->user->nome_completo.'</small> <small>'.$nota->user->nome_completo.'</small>
</td> </td>
<td class="text-center"> <td class="text-center">
'.$nota->notification_date.' '.dateFormat($nota->notification_date).' ('.Carbon::parse($nota->notification_date)->diffForHumans().')
('.Carbon::parse($nota->notification_date)->diffForHumans().') </td>
<td class="text-center">
'.Modules::link($module_id, $nota->id_record, '', null, 'class="btn btn-primary btn-xs"', true, 'tab_note').'
</td> </td>
</tr>'; </tr>';
} }