-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathview_category.php
158 lines (118 loc) · 7.19 KB
/
view_category.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<?php
if(!isset($_SESSION['admin_email'])){
echo "<script>window.open('login.php','_self')</script>";
}else{
?>
<div class="row"><!-- row 1 begin -->
<div class="col-lg-12"><!-- col-lg-12 begin -->
<ol class="breadcrumb"><!-- breadcrumb begin -->
<li>
<i class="fa fa-dashboard"></i> Dashboard / View Categories
</li>
</ol><!-- breadcrumb finish -->
</div><!-- col-lg-12 finish -->
</div><!-- row 1 finish -->
<div class="row"><!-- row 2 begin -->
<div class="col-lg-10"><!-- col-lg-12 begin -->
<div class="panel panel-default"><!-- panel panel-default begin -->
<div class="panel-heading"><!-- panel-heading begin -->
<h3 class="panel-title"><!-- panel-title begin -->
<i class="fa fa-tags fa-fw"></i> View Categories
</h3><!-- panel-title finish -->
</div><!-- panel-heading finish -->
<div class="panel-body"><!-- panel-body begin -->
<div class="table-responsive"><!-- table-responsive begin -->
<table class="table table-hover table-striped table-bordered"><!-- tabel tabel-hover table-striped table-bordered begin -->
<thead><!-- thead begin -->
<tr><!-- tr begin -->
<th> Category Title </th>
<th> Image</th>
<th> Category Desc </th>
<th> Edit</th>
<th> Delete </th>
</tr><!-- tr finish -->
</thead><!-- thead finish -->
<tbody><!-- tbody begin -->
<tr><!-- tr begin -->
<td>Electronics</td>
<td><img src="images/elec.jpg"/></td>
<td width="300">Electronic devices and components An electronic component is any physical entity in an electronic system</td>
<td>
<a href="#">
<i class="fa fa-pencil"></i> Edit
</a>
</td>
<td>
<a href="#">
<i class="fa fa-trash"></i> Delete
</a>
</td>
</tr><!-- tr finish -->
<tr><!-- tr begin -->
<td>Lifestyle</td>
<td><img src="images/life.jpg"/></td>
<td width="300"> lifestyle. In the magazine and television industries, "lifestyle" is used to describe a category of publications or programs</td>
<td>
<a href="#">
<i class="fa fa-pencil"></i> Edit
</a>
</td>
<td>
<a href="#">
<i class="fa fa-trash"></i> Delete
</a>
</td>
</tr><!-- tr finish -->
<tr><!-- tr begin -->
<td>Home Appliances</td>
<td><img src="images/home.jpg"/></td>
<td width="300">Home Appliances Large Appliances Kitchen & Dining Furniture Home Furnishing Home Decor Home Improvemen</td>
<td>
<a href="#">
<i class="fa fa-pencil"></i> Edit
</a>
</td>
<td>
<a href="#">
<i class="fa fa-trash"></i> Delete
</a>
</td>
</tr><!-- tr finish -->
<tr><!-- tr begin -->
<td>Book</td>
<td><img src="images/book.jpg"/></td>
<td width="300">Category for different types of books, as distinct and separate from the Category:Books by genre</td>
<td>
<a href="#">
<i class="fa fa-pencil"></i> Edit
</a>
</td>
<td>
<a href="#">
<i class="fa fa-trash"></i> Delete
</a>
</td>
</tr><!-- tr finish -->
<tr><!-- tr begin -->
<td>More</td>
<td><img src="images/more.jpg"/></td>
<td width="300">Learn more about available product categories for selling , including categories that require approval</td>
<td>
<a href="#">
<i class="fa fa-pencil"></i> Edit
</a>
</td>
<td>
<a href="#">
<i class="fa fa-trash"></i> Delete
</a>
</td>
</tr><!-- tr finish -->
</tbody><!-- tbody finish -->
</table><!-- tabel tabel-hover table-striped table-bordered finish -->
</div><!-- table-responsive finish -->
</div><!-- panel-body finish -->
</div><!-- panel panel-default finish -->
</div><!-- col-lg-12 finish -->
</div><!-- row 2 finish -->
<?php } ?>