init
This commit is contained in:
90
static/Vvvebjs/demo/landing/src/user/orders.html
Normal file
90
static/Vvvebjs/demo/landing/src/user/orders.html
Normal file
@@ -0,0 +1,90 @@
|
||||
@@include('../_includes/html-head.html', {"title": "Vvveb - Orders", "path":"../"})
|
||||
|
||||
<body>
|
||||
|
||||
@@include('../_includes/header.html')
|
||||
|
||||
<main id="site-content" role="main">
|
||||
|
||||
|
||||
<div class="container my-5">
|
||||
<div class="row">
|
||||
<div class="col-md-3 user-sidebar" data-v-save-global="user/index.html,.user-sidebar">
|
||||
|
||||
@@include('../_includes/user-sidebar.html')
|
||||
|
||||
</div>
|
||||
|
||||
<div class="col-md-9 justify-content-center border-start px-4" id="user-container">
|
||||
@@include('../_includes/notifications.html')
|
||||
|
||||
<h2>Orders</h2>
|
||||
|
||||
<div class="table-responsive" data-v-component-orders>
|
||||
<table class="table table-hover border-top">
|
||||
<thead>
|
||||
<tr>
|
||||
<td class="text-center">Order id</td>
|
||||
<td class="text-center">Client</td>
|
||||
<!-- <td class="text-center">No products</td> -->
|
||||
<td class="text-center">Status</td>
|
||||
<td class="text-center">Total</td>
|
||||
<!-- <td class="text-start">Tracking Code</td> -->
|
||||
<td class="text-center">Date added</td>
|
||||
<td>Actions</td>
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
<tbody>
|
||||
<tr data-v-order>
|
||||
<td class="text-center">
|
||||
<span>#</span>
|
||||
<span data-v-order-order_id>1</span>
|
||||
</td>
|
||||
<td class="text-center">
|
||||
<span data-v-order-first_name data-filter-capitalize></span>
|
||||
<span data-v-order-last_name data-filter-capitalize></span>
|
||||
</td>
|
||||
<td class="text-center">
|
||||
<span data-v-order-status></span>
|
||||
</td>
|
||||
<td class="text-center">
|
||||
<span data-v-order-total></span>
|
||||
</td>
|
||||
<td class="text-center">
|
||||
<span data-v-order-created_at data-filter-friendly_date></span>
|
||||
</td>
|
||||
<td class="text-center">
|
||||
<a href="" title="View" class="btn btn-primary btn-sm" data-v-order-url>
|
||||
<i class="la la-eye"></i>
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr data-v-if-not="count >= 1">
|
||||
<td colspan="100">
|
||||
<div class="text-center p-4">
|
||||
<div>
|
||||
<i class="la la-shopping-cart fs-1 mb-2"></i>
|
||||
<h6>No orders to display!</h6>
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
@@include('../_includes/pagination.html', {"component": "orders", "component-index":0})
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
|
||||
@@include('../_includes/footer.html')
|
||||
|
||||
@@include('../_includes/footer-scripts.html')
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user