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:
johnny@pittpc.com
2020-03-02 12:31:07 -05:00
parent 47d7515220
commit ed8950a577
26 changed files with 366 additions and 121 deletions

View File

@@ -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"); ?>