-
Notifications
You must be signed in to change notification settings - Fork 23
/
table-basic.html
794 lines (753 loc) · 48.2 KB
/
table-basic.html
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
<!DOCTYPE html>
<html lang="en">
<head>
<!-- META SECTION -->
<title>Atlant - Responsive Bootstrap Admin Template</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="author" content="<?php echo $Autor ?>">
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<!-- END META SECTION -->
<!-- CSS INCLUDE -->
<link rel="stylesheet" type="text/css" id="theme" href="css/theme-default.css"/>
<!-- EOF CSS INCLUDE -->
</head>
<body>
<!-- START PAGE CONTAINER -->
<div class="page-container">
<!-- START PAGE SIDEBAR -->
<div class="page-sidebar">
<!-- START X-NAVIGATION -->
<ul class="x-navigation">
<li class="xn-logo">
<a href="index.html">ATLANT</a>
<a href="#" class="x-navigation-control"></a>
</li>
<li class="xn-profile">
<a href="#" class="profile-mini">
<img src="assets/images/users/avatar.jpg" alt="John Doe"/>
</a>
<div class="profile">
<div class="profile-image">
<img src="assets/images/users/avatar.jpg" alt="John Doe"/>
</div>
<div class="profile-data">
<div class="profile-data-name">John Doe</div>
<div class="profile-data-title">Web Developer/Designer</div>
</div>
<div class="profile-controls">
<a href="pages-profile.html" class="profile-control-left"><span class="fa fa-info"></span></a>
<a href="pages-messages.html" class="profile-control-right"><span class="fa fa-envelope"></span></a>
</div>
</div>
</li>
<li class="xn-title">Navigation</li>
<li>
<a href="index.html"><span class="fa fa-desktop"></span> <span class="xn-text">Dashboard</span></a>
</li>
<li class="xn-openable">
<a href="#"><span class="fa fa-files-o"></span> <span class="xn-text">Pages</span></a>
<ul>
<li><a href="pages-gallery.html"><span class="fa fa-image"></span> Gallery</a></li>
<li><a href="pages-profile.html"><span class="fa fa-user"></span> Profile</a></li>
<li><a href="pages-address-book.html"><span class="fa fa-users"></span> Address Book</a></li>
<li class="xn-openable">
<a href="#"><span class="fa fa-clock-o"></span> Timeline</a>
<ul>
<li><a href="pages-timeline.html"><span class="fa fa-align-center"></span> Default</a></li>
<li><a href="pages-timeline-simple.html"><span class="fa fa-align-justify"></span> Full Width</a></li>
</ul>
</li>
<li class="xn-openable">
<a href="#"><span class="fa fa-envelope"></span> Mailbox</a>
<ul>
<li><a href="pages-mailbox-inbox.html"><span class="fa fa-inbox"></span> Inbox</a></li>
<li><a href="pages-mailbox-message.html"><span class="fa fa-file-text"></span> Message</a></li>
<li><a href="pages-mailbox-compose.html"><span class="fa fa-pencil"></span> Compose</a></li>
</ul>
</li>
<li><a href="pages-messages.html"><span class="fa fa-comments"></span> Messages</a></li>
<li><a href="pages-calendar.html"><span class="fa fa-calendar"></span> Calendar</a></li>
<li><a href="pages-tasks.html"><span class="fa fa-edit"></span> Tasks</a></li>
<li><a href="pages-content-table.html"><span class="fa fa-columns"></span> Content Table</a></li>
<li><a href="pages-faq.html"><span class="fa fa-question-circle"></span> FAQ</a></li>
<li><a href="pages-search.html"><span class="fa fa-search"></span> Search</a></li>
<li class="xn-openable">
<a href="#"><span class="fa fa-file"></span> Blog</a>
<ul>
<li><a href="pages-blog-list.html"><span class="fa fa-copy"></span> List of Posts</a></li>
<li><a href="pages-blog-post.html"><span class="fa fa-file-o"></span>Single Post</a></li>
</ul>
</li>
<li class="xn-openable">
<a href="#"><span class="fa fa-sign-in"></span> Login</a>
<ul>
<li><a href="pages-login.html">App Login</a></li>
<li><a href="pages-login-website.html">Website Login</a></li>
<li><a href="pages-login-website-light.html"> Website Login Light</a></li>
</ul>
</li>
<li class="xn-openable">
<a href="#"><span class="fa fa-warning"></span> Error Pages</a>
<ul>
<li><a href="pages-error-404.html">Error 404 Sample 1</a></li>
<li><a href="pages-error-404-2.html">Error 404 Sample 2</a></li>
<li><a href="pages-error-500.html"> Error 500</a></li>
</ul>
</li>
</ul>
</li>
<li class="xn-openable">
<a href="#"><span class="fa fa-file-text-o"></span> <span class="xn-text">Layouts</span></a>
<ul>
<li><a href="layout-boxed.html">Boxed</a></li>
<li><a href="layout-nav-toggled.html">Navigation Toggled</a></li>
<li><a href="layout-nav-top.html">Navigation Top</a></li>
<li><a href="layout-nav-right.html">Navigation Right</a></li>
<li><a href="layout-nav-top-fixed.html">Top Navigation Fixed</a></li>
<li><a href="layout-nav-custom.html">Custom Navigation</a></li>
<li><a href="layout-frame-left.html">Frame Left Column</a></li>
<li><a href="layout-frame-right.html">Frame Right Column</a></li>
<li><a href="layout-search-left.html">Search Left Side</a></li>
<li><a href="blank.html">Blank Page</a></li>
</ul>
</li>
<li class="xn-title">Components</li>
<li class="xn-openable">
<a href="#"><span class="fa fa-cogs"></span> <span class="xn-text">UI Kits</span></a>
<ul>
<li><a href="ui-widgets.html"><span class="fa fa-heart"></span> Widgets</a></li>
<li><a href="ui-elements.html"><span class="fa fa-cogs"></span> Elements</a></li>
<li><a href="ui-buttons.html"><span class="fa fa-square-o"></span> Buttons</a></li>
<li><a href="ui-panels.html"><span class="fa fa-pencil-square-o"></span> Panels</a></li>
<li><a href="ui-icons.html"><span class="fa fa-magic"></span> Icons</a><div class="informer informer-warning">+679</div></li>
<li><a href="ui-typography.html"><span class="fa fa-pencil"></span> Typography</a></li>
<li><a href="ui-portlet.html"><span class="fa fa-th"></span> Portlet</a></li>
<li><a href="ui-sliders.html"><span class="fa fa-arrows-h"></span> Sliders</a></li>
<li><a href="ui-alerts-popups.html"><span class="fa fa-warning"></span> Alerts & Popups</a></li>
<li><a href="ui-lists.html"><span class="fa fa-list-ul"></span> Lists</a></li>
<li><a href="ui-tour.html"><span class="fa fa-random"></span> Tour</a></li>
</ul>
</li>
<li class="xn-openable">
<a href="#"><span class="fa fa-pencil"></span> <span class="xn-text">Forms</span></a>
<ul>
<li>
<a href="form-layouts-two-column.html"><span class="fa fa-tasks"></span> Form Layouts</a>
<div class="informer informer-danger">New</div>
<ul>
<li><a href="form-layouts-one-column.html"><span class="fa fa-align-justify"></span> One Column</a></li>
<li><a href="form-layouts-two-column.html"><span class="fa fa-th-large"></span> Two Column</a></li>
<li><a href="form-layouts-tabbed.html"><span class="fa fa-table"></span> Tabbed</a></li>
<li><a href="form-layouts-separated.html"><span class="fa fa-th-list"></span> Separated Rows</a></li>
</ul>
</li>
<li><a href="form-elements.html"><span class="fa fa-file-text-o"></span> Elements</a></li>
<li><a href="form-validation.html"><span class="fa fa-list-alt"></span> Validation</a></li>
<li><a href="form-wizards.html"><span class="fa fa-arrow-right"></span> Wizards</a></li>
<li><a href="form-editors.html"><span class="fa fa-text-width"></span> WYSIWYG Editors</a></li>
<li><a href="form-file-handling.html"><span class="fa fa-floppy-o"></span> File Handling</a></li>
</ul>
</li>
<li class="xn-openable active">
<a href="tables.html"><span class="fa fa-table"></span> <span class="xn-text">Tables</span></a>
<ul>
<li class="active"><a href="table-basic.html"><span class="fa fa-align-justify"></span> Basic</a></li>
<li><a href="table-datatables.html"><span class="fa fa-sort-alpha-desc"></span> Data Tables</a></li>
<li><a href="table-export.html"><span class="fa fa-download"></span> Export Tables</a></li>
</ul>
</li>
<li class="xn-openable">
<a href="#"><span class="fa fa-bar-chart-o"></span> <span class="xn-text">Charts</span></a>
<ul>
<li><a href="charts-morris.html"><span class="xn-text">Morris</span></a></li>
<li><a href="charts-nvd3.html"><span class="xn-text">NVD3</span></a></li>
<li><a href="charts-rickshaw.html"><span class="xn-text">Rickshaw</span></a></li>
<li><a href="charts-other.html"><span class="xn-text">Other</span></a></li>
</ul>
</li>
<li>
<a href="maps.html"><span class="fa fa-map-marker"></span> <span class="xn-text">Maps</span></a>
</li>
<li class="xn-openable">
<a href="#"><span class="fa fa-sitemap"></span> <span class="xn-text">Navigation Levels</span></a>
<ul>
<li class="xn-openable">
<a href="#">Second Level</a>
<ul>
<li class="xn-openable">
<a href="#">Third Level</a>
<ul>
<li class="xn-openable">
<a href="#">Fourth Level</a>
<ul>
<li><a href="#">Fifth Level</a></li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<!-- END X-NAVIGATION -->
</div>
<!-- END PAGE SIDEBAR -->
<!-- PAGE CONTENT -->
<div class="page-content">
<!-- START X-NAVIGATION VERTICAL -->
<ul class="x-navigation x-navigation-horizontal x-navigation-panel">
<!-- TOGGLE NAVIGATION -->
<li class="xn-icon-button">
<a href="#" class="x-navigation-minimize"><span class="fa fa-dedent"></span></a>
</li>
<!-- END TOGGLE NAVIGATION -->
<!-- SEARCH -->
<li class="xn-search">
<form role="form">
<input type="text" name="search" placeholder="Search..."/>
</form>
</li>
<!-- END SEARCH -->
<!-- SIGN OUT -->
<li class="xn-icon-button pull-right">
<a href="#" class="mb-control" data-box="#mb-signout"><span class="fa fa-sign-out"></span></a>
</li>
<!-- END SIGN OUT -->
<!-- MESSAGES -->
<li class="xn-icon-button pull-right">
<a href="#"><span class="fa fa-comments"></span></a>
<div class="informer informer-danger">4</div>
<div class="panel panel-primary animated zoomIn xn-drop-left xn-panel-dragging">
<div class="panel-heading">
<h3 class="panel-title"><span class="fa fa-comments"></span> Messages</h3>
<div class="pull-right">
<span class="label label-danger">4 new</span>
</div>
</div>
<div class="panel-body list-group list-group-contacts scroll" style="height: 200px;">
<a href="#" class="list-group-item">
<div class="list-group-status status-online"></div>
<img src="assets/images/users/user2.jpg" class="pull-left" alt="John Doe"/>
<span class="contacts-title">John Doe</span>
<p>Praesent placerat tellus id augue condimentum</p>
</a>
<a href="#" class="list-group-item">
<div class="list-group-status status-away"></div>
<img src="assets/images/users/user.jpg" class="pull-left" alt="Dmitry Ivaniuk"/>
<span class="contacts-title">Dmitry Ivaniuk</span>
<p>Donec risus sapien, sagittis et magna quis</p>
</a>
<a href="#" class="list-group-item">
<div class="list-group-status status-away"></div>
<img src="assets/images/users/user3.jpg" class="pull-left" alt="Nadia Ali"/>
<span class="contacts-title">Nadia Ali</span>
<p>Mauris vel eros ut nunc rhoncus cursus sed</p>
</a>
<a href="#" class="list-group-item">
<div class="list-group-status status-offline"></div>
<img src="assets/images/users/user6.jpg" class="pull-left" alt="Darth Vader"/>
<span class="contacts-title">Darth Vader</span>
<p>I want my money back!</p>
</a>
</div>
<div class="panel-footer text-center">
<a href="pages-messages.html">Show all messages</a>
</div>
</div>
</li>
<!-- END MESSAGES -->
<!-- TASKS -->
<li class="xn-icon-button pull-right">
<a href="#"><span class="fa fa-tasks"></span></a>
<div class="informer informer-warning">3</div>
<div class="panel panel-primary animated zoomIn xn-drop-left xn-panel-dragging">
<div class="panel-heading">
<h3 class="panel-title"><span class="fa fa-tasks"></span> Tasks</h3>
<div class="pull-right">
<span class="label label-warning">3 active</span>
</div>
</div>
<div class="panel-body list-group scroll" style="height: 200px;">
<a class="list-group-item" href="#">
<strong>Phasellus augue arcu, elementum</strong>
<div class="progress progress-small progress-striped active">
<div class="progress-bar progress-bar-danger" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%;">50%</div>
</div>
<small class="text-muted">John Doe, 25 Sep 2014 / 50%</small>
</a>
<a class="list-group-item" href="#">
<strong>Aenean ac cursus</strong>
<div class="progress progress-small progress-striped active">
<div class="progress-bar progress-bar-warning" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100" style="width: 80%;">80%</div>
</div>
<small class="text-muted">Dmitry Ivaniuk, 24 Sep 2014 / 80%</small>
</a>
<a class="list-group-item" href="#">
<strong>Lorem ipsum dolor</strong>
<div class="progress progress-small progress-striped active">
<div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="95" aria-valuemin="0" aria-valuemax="100" style="width: 95%;">95%</div>
</div>
<small class="text-muted">John Doe, 23 Sep 2014 / 95%</small>
</a>
<a class="list-group-item" href="#">
<strong>Cras suscipit ac quam at tincidunt.</strong>
<div class="progress progress-small">
<div class="progress-bar" role="progressbar" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100" style="width: 100%;">100%</div>
</div>
<small class="text-muted">John Doe, 21 Sep 2014 /</small><small class="text-success"> Done</small>
</a>
</div>
<div class="panel-footer text-center">
<a href="pages-tasks.html">Show all tasks</a>
</div>
</div>
</li>
<!-- END TASKS -->
</ul>
<!-- END X-NAVIGATION VERTICAL -->
<!-- START BREADCRUMB -->
<ul class="breadcrumb">
<li><a href="#">Home</a></li>
<li><a href="#">Tables</a></li>
<li class="active">Basic</li>
</ul>
<!-- END BREADCRUMB -->
<!-- PAGE TITLE -->
<div class="page-title">
<h2><span class="fa fa-arrow-circle-o-left"></span> Basic Tables</h2>
</div>
<!-- END PAGE TITLE -->
<!-- PAGE CONTENT WRAPPER -->
<div class="page-content-wrap">
<div class="row">
<div class="col-md-6">
<!-- START BASIC TABLE SAMPLE -->
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Basic example</h3>
</div>
<div class="panel-body">
<p>Add <code>.table</code> to table to get default table</p>
<table class="table">
<thead>
<tr>
<th>id</th>
<th>First Name</th>
<th>Last Name</th>
<th>Username</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
</tr>
<tr>
<td>2</td>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
<tr>
<td>3</td>
<td>Larry</td>
<td>the Bird</td>
<td>@twitter</td>
</tr>
</tbody>
</table>
</div>
</div>
<!-- END BASIC TABLE SAMPLE -->
<!-- START BORDERED TABLE SAMPLE -->
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Bordered table</h3>
</div>
<div class="panel-body">
<p>Add <code>.table .table-bordered</code> to table to get table with borders.</p>
<table class="table table-bordered">
<thead>
<tr>
<th>id</th>
<th>First Name</th>
<th>Last Name</th>
<th>Username</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
</tr>
<tr>
<td>2</td>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
<tr>
<td>3</td>
<td>Larry</td>
<td>the Bird</td>
<td>@twitter</td>
</tr>
</tbody>
</table>
</div>
</div>
<!-- END BORDERED TABLE SAMPLE -->
<!-- START CONTEXTUAL CLASSES TABLE SAMPLE -->
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Contextual classes</h3>
</div>
<div class="panel-body">
<p>There available 5 classes: <code>active, success, info, warning, danger</code>. Add it to TR tag.</p>
<table class="table table-bordered">
<thead>
<tr>
<th>id</th>
<th>First Name</th>
<th>Last Name</th>
<th>Username</th>
</tr>
</thead>
<tbody>
<tr class="active">
<td>1</td>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
</tr>
<tr class="success">
<td>2</td>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
<tr class="info">
<td>3</td>
<td>Larry</td>
<td>the Bird</td>
<td>@twitter</td>
</tr>
<tr class="warning">
<td>3</td>
<td>Larry</td>
<td>the Bird</td>
<td>@twitter</td>
</tr>
<tr class="danger">
<td>3</td>
<td>Larry</td>
<td>the Bird</td>
<td>@twitter</td>
</tr>
</tbody>
</table>
</div>
</div>
<!-- END CONTEXTUAL CLASSES TABLE SAMPLE -->
</div>
<div class="col-md-6">
<!-- START STRIPED TABLE SAMPLE -->
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Striped rows</h3>
</div>
<div class="panel-body">
<p>Add class <code>.table-striped</code> to table to get table striped rows.</p>
<table class="table table-striped">
<thead>
<tr>
<th>#</th>
<th>First Name</th>
<th>Last Name</th>
<th>Username</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
</tr>
<tr>
<td>2</td>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
<tr>
<td>3</td>
<td>Larry</td>
<td>the Bird</td>
<td>@twitter</td>
</tr>
</tbody>
</table>
</div>
</div>
<!-- END STRIPED TABLE SAMPLE -->
<!-- START TABLE HOVER ROWS -->
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Hover rows</h3>
</div>
<div class="panel-body">
<p>Add class <code>.table-hover</code> to table to highlight row on hover.</p>
<table class="table table-hover">
<thead>
<tr>
<th>#</th>
<th>First Name</th>
<th>Last Name</th>
<th>Username</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
</tr>
<tr>
<td>2</td>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
<tr>
<td>3</td>
<td>Larry</td>
<td>the Bird</td>
<td>@twitter</td>
</tr>
</tbody>
</table>
</div>
</div>
<!-- END TABLE HOVER ROWS -->
<!-- START CONDENSED TABLE SAMPLE -->
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Condensed table</h3>
</div>
<div class="panel-body">
<p>Add class <code>.table-hover</code> to table to get condensed table.</p>
<table class="table table-condensed">
<thead>
<tr>
<th>#</th>
<th>First Name</th>
<th>Last Name</th>
<th>Username</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
</tr>
<tr>
<td>2</td>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
<tr>
<td>3</td>
<td>Larry</td>
<td>the Bird</td>
<td>@twitter</td>
</tr>
</tbody>
</table>
</div>
</div>
<!-- END CONDENSED TABLE SAMPLE -->
<!-- START BORDERED TABLE SAMPLE -->
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Table in panel</h3>
</div>
<div class="panel-body">
<p>Add class <code>.panel-body-table</code> to <code>panel-body</code> to remove paddings in panel and borders in table.</p>
</div>
<div class="panel-body panel-body-table">
<table class="table table-bordered">
<thead>
<tr>
<th>id</th>
<th>First Name</th>
<th>Last Name</th>
<th>Username</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
</tr>
<tr>
<td>2</td>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
<tr>
<td>3</td>
<td>Larry</td>
<td>the Bird</td>
<td>@twitter</td>
</tr>
</tbody>
</table>
</div>
</div>
<!-- END BORDERED TABLE SAMPLE -->
</div>
</div>
<!-- START RESPONSIVE TABLES -->
<div class="row">
<div class="col-md-12">
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Responsive tables</h3>
</div>
<div class="panel-body panel-body-table">
<div class="table-responsive">
<table class="table table-bordered table-striped table-actions">
<thead>
<tr>
<th width="50">id</th>
<th>name</th>
<th width="100">status</th>
<th width="100">amount</th>
<th width="100">date</th>
<th width="100">actions</th>
</tr>
</thead>
<tbody>
<tr id="trow_1">
<td class="text-center">1</td>
<td><strong>John Doe</strong></td>
<td><span class="label label-success">New</span></td>
<td>$430.20</td>
<td>24/09/2014</td>
<td>
<button class="btn btn-default btn-rounded btn-sm"><span class="fa fa-pencil"></span></button>
<button class="btn btn-danger btn-rounded btn-sm" onClick="delete_row('trow_1');"><span class="fa fa-times"></span></button>
</td>
</tr>
<tr id="trow_2">
<td class="text-center">2</td>
<td><strong>Dmitry Ivaniuk</strong></td>
<td><span class="label label-warning">Pending</span></td>
<td>$1,351.00</td>
<td>23/09/2014</td>
<td>
<button class="btn btn-default btn-rounded btn-sm"><span class="fa fa-pencil"></span></button>
<button class="btn btn-danger btn-rounded btn-sm" onClick="delete_row('trow_2');"><span class="fa fa-times"></span></button>
</td>
</tr>
<tr id="trow_3">
<td class="text-center">3</td>
<td><strong>Nadia Ali</strong></td>
<td><span class="label label-info">In Queue</span></td>
<td>$2,621.00</td>
<td>22/09/2014</td>
<td>
<button class="btn btn-default btn-rounded btn-sm"><span class="fa fa-pencil"></span></button>
<button class="btn btn-danger btn-rounded btn-sm" onClick="delete_row('trow_3');"><span class="fa fa-times"></span></button>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
<!-- END RESPONSIVE TABLES -->
<!-- END PAGE CONTENT WRAPPER -->
</div>
</div>
<!-- END PAGE CONTENT -->
</div>
<!-- END PAGE CONTAINER -->
<!-- MESSAGE BOX-->
<div class="message-box animated fadeIn" data-sound="alert" id="mb-remove-row">
<div class="mb-container">
<div class="mb-middle">
<div class="mb-title"><span class="fa fa-times"></span> Remove <strong>Data</strong> ?</div>
<div class="mb-content">
<p>Are you sure you want to remove this row?</p>
<p>Press Yes if you sure.</p>
</div>
<div class="mb-footer">
<div class="pull-right">
<button class="btn btn-success btn-lg mb-control-yes">Yes</button>
<button class="btn btn-default btn-lg mb-control-close">No</button>
</div>
</div>
</div>
</div>
</div>
<!-- END MESSAGE BOX-->
<!-- MESSAGE BOX-->
<div class="message-box animated fadeIn" data-sound="alert" id="mb-signout">
<div class="mb-container">
<div class="mb-middle">
<div class="mb-title"><span class="fa fa-sign-out">¿</span>Cerrar <strong>Sesión</strong> ?</div>
<div class="mb-content">
<p>¿Esta seguro que desea salir?</p>
<p>Presione No si desea continuar trabajando. Presione Si para salir del sistema de forma segura.</p>
</div>
<div class="mb-footer">
<div class="pull-right">
<a href="<?=$salir;?>" class="btn btn-success btn-lg">Si</a>
<button class="btn btn-default btn-lg mb-control-close">No</button>
</div>
</div>
</div>
</div>
</div>
<!-- END MESSAGE BOX-->
<!-- START PRELOADS -->
<audio id="audio-alert" src="audio/alert.mp3" preload="auto"></audio>
<audio id="audio-fail" src="audio/fail.mp3" preload="auto"></audio>
<!-- END PRELOADS -->
<!-- START SCRIPTS -->
<!-- START PLUGINS -->
<script type="text/javascript" src="js/plugins/jquery/jquery.min.js"></script>
<script type="text/javascript" src="js/plugins/jquery/jquery-ui.min.js"></script>
<script type="text/javascript" src="js/plugins/bootstrap/bootstrap.min.js"></script>
<!-- END PLUGINS -->
<!-- START THIS PAGE PLUGINS-->
<script type='text/javascript' src='js/plugins/icheck/icheck.min.js'></script>
<script type="text/javascript" src="js/plugins/mcustomscrollbar/jquery.mCustomScrollbar.min.js"></script>
<script type="text/javascript" src="js/demo_tables.js"></script>
<!-- END THIS PAGE PLUGINS-->
<!-- START TEMPLATE -->
<script type="text/javascript" src="js/settings.js"></script>
<script type="text/javascript" src="js/plugins.js"></script>
<script type="text/javascript" src="js/actions.js"></script>
<!-- END TEMPLATE -->
<!-- END SCRIPTS -->
</body>
</html>