mirror of
https://github.com/itflow-org/itflow
synced 2026-02-28 10:54:52 +00:00
Tons of UI and code cleanups, renamed many sql tables and fields, started adding created_at and updated_at fields
This commit is contained in:
@@ -5,7 +5,7 @@
|
||||
<div class="card">
|
||||
<div class="card-header">
|
||||
<h6 class="float-left mt-1"><i class="fa fa-file"></i> Uploaded Files</h6>
|
||||
<button class="btn btn-primary btn-sm float-right" data-toggle="modal" data-target="#addClientFileModal"><i class="fa fa-cloud-upload-alt"></i></button>
|
||||
<button class="btn btn-primary btn-sm float-right" data-toggle="modal" data-target="#addFileModal"><i class="fa fa-cloud-upload-alt"></i></button>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
|
||||
<div class="col-xl-3 col-lg-3 col-md-6 col-sm-6 mb-3">
|
||||
<div class="card">
|
||||
<a href="#" data-toggle="modal" data-target="#viewClientFileModal<?php echo $file_id; ?>">
|
||||
<a href="#" data-toggle="modal" data-target="#viewFileModal<?php echo $file_id; ?>">
|
||||
<img class="img-fluid" src="<?php echo $file_name; ?>">
|
||||
</a>
|
||||
<div class="card-footer p-1">
|
||||
@@ -37,7 +37,7 @@
|
||||
</div>
|
||||
|
||||
<?php
|
||||
include("view_client_file_modal.php");
|
||||
include("view_file_modal.php");
|
||||
}
|
||||
?>
|
||||
</div>
|
||||
@@ -83,4 +83,4 @@
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<?php include("add_client_file_modal.php"); ?>
|
||||
<?php include("add_file_modal.php"); ?>
|
||||
Reference in New Issue
Block a user