-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin_reviews.html
More file actions
96 lines (96 loc) · 5.72 KB
/
admin_reviews.html
File metadata and controls
96 lines (96 loc) · 5.72 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="css/admin.css">
<script type="text/javascript" src="./js/jquery-3.5.1.min.js"></script>
<script type="text/javascript" src="./libs/ckeditor/ckeditor.js"> </script>
<script type="text/javascript" src="./js/admin.js"></script>
<title>Редактирование отзывов</title>
</head>
<body>
<header>
<div class="nav-container">
<nav>
<ul>
<li><a href="./admin_news.html">Новости</a></li>
<li><a href="./admin_category.html">Категории</a></li>
<li><a href="./admin_menu.html">Меню</a></li>
<li><a href="./admin_restaurants.html">Рестораны</a></li>
<li><a href="./admin_reviews.html">Отзывы</a></li>
<li><a href="./admin_tableOrders.html">Столики</a></li>
<li><a href="./admin_eventOrders.html">Мероприятия</a></li>
</ul>
</nav>
</div>
</header>
<section class="edit-container">
<div class="title">
<h1>Администрирование отзывов</h1>
</div>
<div class="container">
<div class="row">
<h3>Список отзывов</h3>
</div>
<div class="row">
<table class="list">
<thead>
<tr>
<th>Имя создателя</th>
<th>Дата добавления</th>
<th>Тело отзыва</th>
<th>Удалить</th>
</tr>
</thead>
<tbody>
<tr>
<td id="creatorName">Виктор Сергеевич</td>
<td id="date">2021-09-20 22:10</td>
<td id="content">Мой отзыв Мой отзыв Мой отзыв Мой отзыв Мой отзыв Мой отзыв Мой отзыв Мой отзыв Мой отзыв Мой отзыв Мой отзыв Мой отзыв Мой отзыв</td>
<td><a onclick="removeReview.call(this)">Удалить</a></td>
</tr>
<tr>
<td id="creatorName">Виктор Сергеевич</td>
<td id="date">2021-09-20 22:10</td>
<td id="content">Мой отзыв Мой отзыв Мой отзыв Мой отзыв Мой отзыв Мой отзыв Мой отзыв Мой отзыв Мой отзыв Мой отзыв Мой отзыв Мой отзыв Мой отзыв</td>
<td><a onclick="removeReview.call(this)">Удалить</a></td>
</tr>
<tr>
<td id="creatorName">Виктор Сергеевич</td>
<td id="date">2021-09-20 22:10</td>
<td id="content">Мой отзыв Мой отзыв Мой отзыв Мой отзыв Мой отзыв Мой отзыв Мой отзыв Мой отзыв Мой отзыв Мой отзыв Мой отзыв Мой отзыв Мой отзыв</td>
<td><a onclick="removeReview.call(this)">Удалить</a></td>
</tr>
<tr>
<td id="creatorName">Виктор Сергеевич</td>
<td id="date">2021-09-20 22:10</td>
<td id="content">Мой отзыв Мой отзыв Мой отзыв Мой отзыв Мой отзыв Мой отзыв Мой отзыв Мой отзыв Мой отзыв Мой отзыв Мой отзыв Мой отзыв Мой отзыв</td>
<td><a onclick="removeReview.call(this)">Удалить</a></td>
</tr>
<tr>
<td id="creatorName">Виктор Сергеевич</td>
<td id="date">2021-09-20 22:10</td>
<td id="content">Мой отзыв Мой отзыв Мой отзыв Мой отзыв Мой отзыв Мой отзыв Мой отзыв Мой отзыв Мой отзыв Мой отзыв Мой отзыв Мой отзыв Мой отзыв</td>
<td><a onclick="removeReview.call(this)">Удалить</a></td>
</tr>
<tr>
<td id="creatorName">Виктор Сергеевич</td>
<td id="date">2021-09-20 22:10</td>
<td id="content">Мой отзыв Мой отзыв Мой отзыв Мой отзыв Мой отзыв Мой отзыв Мой отзыв Мой отзыв Мой отзыв Мой отзыв Мой отзыв Мой отзыв Мой отзыв</td>
<td><a onclick="removeReview.call(this)">Удалить</a></td>
</tr>
</tbody>
</table>
</div>
<div class="row text-center">
<a class="active">1</a>
<a href="">2</a>
<a href="">3</a>
<a href="">4</a>
</div>
</div>
</section>
</body>
</html>