mirror of
https://github.com/itflow-org/itflow
synced 2026-02-28 19:04:52 +00:00
Started adding delete buttons to edit windows and removing the action column on some tables this will allow for more room to display data
This commit is contained in:
10
vendors.php
10
vendors.php
@@ -103,6 +103,10 @@
|
||||
$vendor_notes = $row['vendor_notes']
|
||||
|
||||
?>
|
||||
|
||||
|
||||
<?php include("edit_vendor_modal.php"); ?>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
<a class="text-dark" href="#" data-toggle="modal" data-target="#editVendorModal<?php echo $vendor_id; ?>"><?php echo $vendor_name; ?><a>
|
||||
@@ -152,18 +156,18 @@
|
||||
<a class="dropdown-item" href="#" data-toggle="modal" data-target="#editVendorModal<?php echo $vendor_id; ?>">Edit</a>
|
||||
<a class="dropdown-item" href="post.php?delete_vendor=<?php echo $vendor_id; ?>">Delete</a>
|
||||
</div>
|
||||
</div>
|
||||
<?php include("edit_vendor_modal.php"); ?>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<?php
|
||||
|
||||
|
||||
}
|
||||
|
||||
?>
|
||||
|
||||
</tbody>
|
||||
|
||||
</table>
|
||||
|
||||
<?php include("pagination.php"); ?>
|
||||
|
||||
Reference in New Issue
Block a user