Added default storage to vessel and some other fixes
This commit is contained in:
+12
-6
@@ -330,18 +330,24 @@ if (empty($res)) {
|
||||
<tr>
|
||||
<th>#</th>
|
||||
<th><?=_('Task')?></th>
|
||||
<th></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<?php
|
||||
$i = 1;
|
||||
foreach ($res as $row) {
|
||||
echo "<tr>";
|
||||
echo "<td>", $i++, "</td>";
|
||||
echo "<td>", $row['taskname'], "</td>";
|
||||
form_action_buttons('task.php', $row['taskid']);
|
||||
echo "</tr>\n";
|
||||
echo "<tr>";
|
||||
echo "<td>", $i++;
|
||||
echo '<a class="text-nowrap" title="', _('View'), '" href="task.php?f=view&id=', $row['taskid'], '"><i class="bi bi-eye ms-2"></i></a>', "\n";
|
||||
echo "</td>";
|
||||
echo "<td>", $row['taskname'], "</td>";
|
||||
// Edit current record button
|
||||
echo "<td>";
|
||||
echo '<a title="', _('Edit'), '" href="task.php?f=edit&id=', $row['taskid'], '"><i class="bi-pencil"></i></a>', "\n";
|
||||
echo "</td>\n";
|
||||
echo "</tr>\n";
|
||||
} // endforeach;
|
||||
echo "</table>\n";
|
||||
echo "</table>\n";
|
||||
} // not empty
|
||||
|
||||
form_add_button('task.php', $id, 'projid');
|
||||
|
||||
Reference in New Issue
Block a user