158 lines
4.4 KiB
PHP
158 lines
4.4 KiB
PHP
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<meta http-equiv="x-ua-compatible" content="ie=edge" />
|
|
|
|
<meta name="csrf-token" content="{{ csrf_token() }}" />
|
|
|
|
<title>لیست فایل های آپلود شده</title>
|
|
|
|
<!-- Font Awesome Icons -->
|
|
<link rel="stylesheet" href="../../plugins/fontawesome-free/css/all.min.css" />
|
|
<!-- IRANSans Font -->
|
|
<link rel="stylesheet" href="../../dist/css/fontiran.css" />
|
|
<!-- Theme style -->
|
|
<link rel="stylesheet" href="../../dist/css/adminlte.css" />
|
|
|
|
<style>
|
|
.card-header {
|
|
padding: 0.75rem 1.25rem 0.2rem;
|
|
}
|
|
|
|
th {
|
|
font-size: 13px;
|
|
}
|
|
|
|
td {
|
|
font-size: 14px;
|
|
}
|
|
|
|
button.btn {
|
|
font-size: 12px;
|
|
}
|
|
|
|
i {
|
|
font-size: 10px;
|
|
}
|
|
|
|
.starter-loader-container {
|
|
z-index: 3000 !important;
|
|
}
|
|
|
|
.abrar-main {
|
|
margin-top: 95px;
|
|
padding: 0 10px;
|
|
}
|
|
|
|
label {
|
|
font-size: 0.8rem;
|
|
font-weight: 500 !important;
|
|
color: rgba(0, 0, 0, 0.5);
|
|
}
|
|
|
|
.form-control {
|
|
font-size: 13px;
|
|
}
|
|
|
|
.required-label::after {
|
|
content: "*";
|
|
position: relative;
|
|
right: 2px;
|
|
color: #dc3545;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body
|
|
class="hold-transition sidebar-mini layout-fixed layout-navbar-fixed starter-project-page"
|
|
>
|
|
<div class="wrapper">
|
|
<!-- Content Wrapper. Contains page content -->
|
|
<div class="content-wrapper">
|
|
<!-- TOP MENU -->
|
|
<header>
|
|
<div class="menu_top" id="navbarmenu_top">
|
|
<div class="rahdariLogo">
|
|
<a href="#"
|
|
><img
|
|
src="../dist/images/icons/alertInstallAppLogo.png"
|
|
alt=""
|
|
title="سازمان راهداری و حمل و نقل جاده ای"
|
|
/></a>
|
|
</div>
|
|
<button
|
|
class="responsiveTopMenuBtn routinghover"
|
|
onclick="window.open('/rmto', '_self');"
|
|
>
|
|
<img src="../dist/images/icons/home.svg" />صفحه اصلی
|
|
</button>
|
|
@if (Auth::user()->username == 'witel' ||
|
|
Auth::user()->username == 'drdanesh')
|
|
<button
|
|
class="responsiveTopMenuBtn routinghover"
|
|
onclick="window.open('/events/archived', '_self');"
|
|
>
|
|
<img src="../dist/images/icons/files-events.svg" />اطلاعیههای آرشیو شده
|
|
</button>
|
|
@endif
|
|
|
|
<div class="clearfix"></div>
|
|
<form
|
|
id="logout-form"
|
|
action="{{ route('logout') }}"
|
|
method="POST"
|
|
style="display: none;"
|
|
>
|
|
@csrf
|
|
</form>
|
|
</div>
|
|
</header>
|
|
<!-- END TOP MENU -->
|
|
<!-- Main content -->
|
|
<div class="content">
|
|
<div class="starter-loader-container">
|
|
<div class="starter-loader"></div>
|
|
</div>
|
|
<div class="container-fluid">
|
|
<div class="row m-0">
|
|
<div class="col-sm-12">
|
|
<div class="upload-body">
|
|
<!-- Default box -->
|
|
<div id="user-list-card" class="card-container">
|
|
<div class="card-headers">
|
|
<h3 class="card-titles">لیست فایل های آپلود شده</h3>
|
|
</div>
|
|
<div class="card-body-container"></div>
|
|
<!-- /.card-body -->
|
|
</div>
|
|
<!-- /.card -->
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- /.container-fluid -->
|
|
</div>
|
|
<!-- /.content -->
|
|
</div>
|
|
<!-- /.content-wrapper -->
|
|
</div>
|
|
<!-- ../wrapper -->
|
|
|
|
<!-- REQUIRED SCRIPTS -->
|
|
|
|
<!-- jQuery -->
|
|
<script src="../../plugins/jquery/jquery.min.js"></script>
|
|
<!-- Bootstrap 4 -->
|
|
<script src="../../plugins/bootstrap/js/bootstrap.bundle.min.js"></script>
|
|
<!-- Sweetalert2 -->
|
|
<script src="../../plugins/sweetalert2/sweetalert2.all.min.js"></script>
|
|
<!-- AdminLTE App -->
|
|
<script src="../../dist/js/adminlte.min.js"></script>
|
|
<!-- Page Script -->
|
|
<script src="../../dist/js/uploads.js?v=0.8"></script>
|
|
</body>
|
|
</html>
|