You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

899 lines
20 KiB

  1. ---
  2. layout : 'default'
  3. css : 'table'
  4. element : 'table'
  5. elementType : 'collection'
  6. title : 'Table'
  7. description : 'Tables display collections of related data grouped into rows'
  8. type : 'UI Collection'
  9. themes : ['Default']
  10. ---
  11. <link rel="stylesheet/less" type="text/css" href="/build/less/definitions/collections/table.less" />
  12. <script src="/javascript/table.js"></script>
  13. <%- @partial('header') %>
  14. <div class="main container">
  15. <h2 class="ui dividing header">Types</h2>
  16. <div class="example">
  17. <h4 class="ui header">Table</h4>
  18. <p>A standard table</p>
  19. <div class="ui ignored positive icon message">
  20. <i class="mobile icon"></i>
  21. <div class="content">
  22. <h3 class="header">Responsive Element</h3>
  23. <p>Tables are designed to be responsive. Table cells will stack when a mobile viewport size is reached.</p>
  24. </div>
  25. </div>
  26. <table class="ui table">
  27. <thead>
  28. <tr>
  29. <th>Name</th>
  30. <th>Registration Date</th>
  31. <th>E-mail address</th>
  32. <th>Premium Plan</th>
  33. </tr>
  34. </thead>
  35. <tbody>
  36. <tr>
  37. <td>John Lilki</td>
  38. <td>September 14, 2013</td>
  39. <td>jhlilk22@yahoo.com</td>
  40. <td>No</td>
  41. </tr>
  42. <tr>
  43. <td>Jamie Harington</td>
  44. <td>January 11, 2014</td>
  45. <td>jamieharingonton@yahoo.com</td>
  46. <td>Yes</td>
  47. </tr>
  48. <tr>
  49. <td>Jill Lewis</td>
  50. <td>May 11, 2014</td>
  51. <td>jilsewris22@yahoo.com</td>
  52. <td>Yes</td>
  53. </tr>
  54. </tbody>
  55. <tfoot>
  56. <tr>
  57. <th colspan="4">
  58. <div class="ui primary labeled icon button">
  59. <i class="user icon"></i> Add User
  60. </div>
  61. </th>
  62. </tr>
  63. </tfoot>
  64. </table>
  65. </div>
  66. <h2 class="ui dividing header">States</h2>
  67. <div class="example">
  68. <h4 class="ui header">Positive / Negative</h4>
  69. <p>A cell or row may let a user know whether a value is good or bad</p>
  70. <table class="ui table">
  71. <thead>
  72. <tr>
  73. <th>Name</th>
  74. <th>Status</th>
  75. <th>Notes</th>
  76. </tr>
  77. </thead>
  78. <tbody>
  79. <tr>
  80. <td>No Name Specified</td>
  81. <td>Unknown</td>
  82. <td class="negative">None</td>
  83. </tr>
  84. <tr class="positive">
  85. <td>Jimmy</td>
  86. <td><i class="icon checkmark"></i> Approved</td>
  87. <td>None</td>
  88. </tr>
  89. <tr>
  90. <td>Jamie</td>
  91. <td>Unknown</td>
  92. <td class="positive"><i class="icon close"></i> Requires call</td>
  93. </tr>
  94. <tr class="negative">
  95. <td>Jill</td>
  96. <td>Unknown</td>
  97. <td>None</td>
  98. </tr>
  99. </tbody>
  100. </table>
  101. </div>
  102. <h3 class="ui header">Cells</h3>
  103. <div class="example">
  104. <h4 class="ui header">Error</h4>
  105. <p>A cell or row may attention the user to an error or a negative value</p>
  106. <table class="ui table">
  107. <thead>
  108. <tr>
  109. <th>Name</th>
  110. <th>Status</th>
  111. <th>Notes</th>
  112. </tr>
  113. </thead>
  114. <tbody>
  115. <tr>
  116. <td>No Name Specified</td>
  117. <td>Approved</td>
  118. <td>None</td>
  119. </tr>
  120. <tr class="error">
  121. <td>Jimmy</td>
  122. <td>Cannot pull data</td>
  123. <td>None</td>
  124. </tr>
  125. <tr>
  126. <td>Jamie</td>
  127. <td>Approved</td>
  128. <td class="error"><i class="attention icon"></i> Classified</td>
  129. </tr>
  130. <tr>
  131. <td>Jill</td>
  132. <td>Approved</td>
  133. <td>None</td>
  134. </tr>
  135. </tbody>
  136. </table>
  137. </div>
  138. <div class="example">
  139. <h4 class="ui header">Warning</h4>
  140. <p>A cell or row may warn a user</p>
  141. <table class="ui table">
  142. <thead>
  143. <tr>
  144. <th>Name</th>
  145. <th>Status</th>
  146. <th>Notes</th>
  147. </tr>
  148. </thead>
  149. <tbody>
  150. <tr>
  151. <td>No Name Specified</td>
  152. <td>Unknown</td>
  153. <td>None</td>
  154. </tr>
  155. <tr class="warning">
  156. <td>Jimmy</td>
  157. <td><i class="attention icon"></i> Requires Action</td>
  158. <td>None</td>
  159. </tr>
  160. <tr>
  161. <td>Jamie</td>
  162. <td>Unknown</td>
  163. <td class="warning"><i class="attention icon"></i> Hostile</td>
  164. </tr>
  165. <tr>
  166. <td>Jill</td>
  167. <td>Unknown</td>
  168. <td>None</td>
  169. </tr>
  170. </tbody>
  171. </table>
  172. </div>
  173. <div class="example">
  174. <h4 class="ui header">Active</h4>
  175. <p>A cell or row can be active or selected by a user</p>
  176. <table class="ui table">
  177. <thead>
  178. <tr>
  179. <th>Name</th>
  180. <th>Status</th>
  181. <th>Notes</th>
  182. </tr>
  183. </thead>
  184. <tbody>
  185. <tr>
  186. <td>Jamie</td>
  187. <td>Approved</td>
  188. <td>Requires call</td>
  189. </tr>
  190. <tr class="active">
  191. <td>John</td>
  192. <td>Selected</td>
  193. <td>None</td>
  194. </tr>
  195. <tr>
  196. <td>Jamie</td>
  197. <td>Approved</td>
  198. <td>Requires call</td>
  199. </tr>
  200. <tr>
  201. <td class="active">Jill</td>
  202. <td>Approved</td>
  203. <td>None</td>
  204. </tr>
  205. </tbody>
  206. </table>
  207. </div>
  208. <div class="example">
  209. <h4 class="ui header">Disabled</h4>
  210. <p>A cell can be disabled</p>
  211. <table class="ui table">
  212. <thead>
  213. <tr>
  214. <th>Name</th>
  215. <th>Status</th>
  216. <th>Notes</th>
  217. </tr>
  218. </thead>
  219. <tbody>
  220. <tr class="disabled">
  221. <td>Jamie</td>
  222. <td>Approved</td>
  223. <td>Requires call</td>
  224. </tr>
  225. <tr>
  226. <td>John</td>
  227. <td>Selected</td>
  228. <td>None</td>
  229. </tr>
  230. <tr>
  231. <td>Jamie</td>
  232. <td>Approved</td>
  233. <td>Requires call</td>
  234. </tr>
  235. <tr>
  236. <td class="disabled">Jill</td>
  237. <td>Approved</td>
  238. <td>None</td>
  239. </tr>
  240. </tbody>
  241. </table>
  242. </div>
  243. <h2 class="ui dividing header">Variations</h2>
  244. <div class="example">
  245. <h4 class="ui header">Striped</h4>
  246. <p>A table can stripe alternate rows of content with a darker color to increase contrast</p>
  247. <table class="ui striped table">
  248. <thead>
  249. <tr>
  250. <th>Name</th>
  251. <th>Status</th>
  252. <th>Notes</th>
  253. </tr>
  254. </thead>
  255. <tbody>
  256. <tr>
  257. <td>John</td>
  258. <td>Approved</td>
  259. <td>None</td>
  260. </tr>
  261. <tr>
  262. <td>Jamie</td>
  263. <td>Approved</td>
  264. <td>Requires call</td>
  265. </tr>
  266. <tr>
  267. <td>Jill</td>
  268. <td>Denied</td>
  269. <td>None</td>
  270. </tr>
  271. </tbody>
  272. <tfoot>
  273. <th>3 People</th>
  274. <th>2 Approved</th>
  275. <th></th>
  276. </tfoot>
  277. </table>
  278. </div>
  279. <div class="example">
  280. <h4 class="ui header">Celled</h4>
  281. <p>A table may be divided each row into separate cells</p>
  282. <table class="ui celled table">
  283. <thead>
  284. <tr>
  285. <th>Name</th>
  286. <th>Status</th>
  287. <th>Notes</th>
  288. </tr>
  289. </thead>
  290. <tbody>
  291. <tr>
  292. <td>John</td>
  293. <td>Approved</td>
  294. <td>None</td>
  295. </tr>
  296. <tr>
  297. <td>Jamie</td>
  298. <td>Approved</td>
  299. <td>Requires call</td>
  300. </tr>
  301. <tr>
  302. <td>Jill</td>
  303. <td>Denied</td>
  304. <td>None</td>
  305. </tr>
  306. </tbody>
  307. <tfoot>
  308. <th>3 People</th>
  309. <th>2 Approved</th>
  310. <th></th>
  311. </tfoot>
  312. </table>
  313. </div>
  314. <div class="example">
  315. <h4 class="ui header">Basic</h4>
  316. <p>A table can reduce its complexity to increase readability.</p>
  317. <table class="ui basic table">
  318. <thead>
  319. <tr>
  320. <th>Name</th>
  321. <th>Status</th>
  322. <th>Notes</th>
  323. </tr>
  324. </thead>
  325. <tbody>
  326. <tr>
  327. <td>John</td>
  328. <td>Approved</td>
  329. <td>None</td>
  330. </tr>
  331. <tr>
  332. <td>Jamie</td>
  333. <td>Approved</td>
  334. <td>Requires call</td>
  335. </tr>
  336. <tr>
  337. <td>Jill</td>
  338. <td>Denied</td>
  339. <td>None</td>
  340. </tr>
  341. </tbody>
  342. </table>
  343. </div>
  344. <div class="another example">
  345. <table class="ui very basic table">
  346. <thead>
  347. <tr>
  348. <th>Name</th>
  349. <th>Status</th>
  350. <th>Notes</th>
  351. </tr>
  352. </thead>
  353. <tbody>
  354. <tr>
  355. <td>John</td>
  356. <td>Approved</td>
  357. <td>None</td>
  358. </tr>
  359. <tr>
  360. <td>Jamie</td>
  361. <td>Approved</td>
  362. <td>Requires call</td>
  363. </tr>
  364. <tr>
  365. <td>Jill</td>
  366. <td>Denied</td>
  367. <td>None</td>
  368. </tr>
  369. </tbody>
  370. </table>
  371. </div>
  372. <div class="example">
  373. <h4 class="ui header">Even Width</h4>
  374. <p>A table can specify its column count to divide its content evenly</p>
  375. <table class="ui five column table">
  376. <thead>
  377. <th>Name</th>
  378. <th>Status</th>
  379. <th>Age</th>
  380. <th>Gender</th>
  381. <th>Notes</th>
  382. </thead>
  383. <tbody>
  384. <tr>
  385. <td>John</td>
  386. <td>Approved</td>
  387. <td>22</td>
  388. <td>Male</td>
  389. <td>None</td>
  390. </tr>
  391. <tr>
  392. <td>Jamie</td>
  393. <td>Approved</td>
  394. <td>32</td>
  395. <td>Male</td>
  396. <td>Requires call</td>
  397. </tr>
  398. <tr>
  399. <td>Jill</td>
  400. <td>Denied</td>
  401. <td>22</td>
  402. <td>Female</td>
  403. <td>None</td>
  404. </tr>
  405. </tbody>
  406. <tfoot>
  407. <th>3 People</th>
  408. <th>2 Approved</th>
  409. <th></th>
  410. <th></th>
  411. <th></th>
  412. </tfoot>
  413. </table>
  414. </div>
  415. <div class="example">
  416. <h4 class="ui header">Column Width</h4>
  417. <p>A table can specify the width of individual columns independently.</p>
  418. <div class="ui ignored info message">Tables use a 16 column grid. This should be the total width of all elements in a column</div>
  419. <table class="ui table">
  420. <thead>
  421. <th class="ten wide">Name</th>
  422. <th class="six wide">Status</th>
  423. </thead>
  424. <tbody>
  425. <tr>
  426. <td>John</td>
  427. <td>Approved</td>
  428. </tr>
  429. <tr>
  430. <td>Jamie</td>
  431. <td>Approved</td>
  432. </tr>
  433. <tr>
  434. <td>Jill</td>
  435. <td>Denied</td>
  436. </tr>
  437. </tbody>
  438. <tfoot>
  439. <th>3 People</th>
  440. <th>2 Approved</th>
  441. </tfoot>
  442. </table>
  443. </div>
  444. <div class="example">
  445. <h4 class="ui header">Collapsing</h4>
  446. <p>By default tables take the size of their container. A collapsing takes up only as much space as its rows.</p>
  447. <table class="ui collapsing table">
  448. <thead>
  449. <tr>
  450. <th>Name</th>
  451. <th>Status</th>
  452. <th>Notes</th>
  453. </tr>
  454. </thead>
  455. <tbody>
  456. <tr>
  457. <td>John</td>
  458. <td>Approved</td>
  459. <td>None</td>
  460. </tr>
  461. <tr>
  462. <td>Jamie</td>
  463. <td>Approved</td>
  464. <td>Requires call</td>
  465. </tr>
  466. <tr>
  467. <td>Jill</td>
  468. <td>Denied</td>
  469. <td>None</td>
  470. </tr>
  471. </tbody>
  472. <tfoot>
  473. <th>3 People</th>
  474. <th>2 Approved</th>
  475. <th></th>
  476. </tfoot>
  477. </table>
  478. </div>
  479. <div class="example">
  480. <h4 class="ui header">Colored</h4>
  481. <p>A table can be given a color to distinguish it from other tables.</p>
  482. <table class="ui blue table">
  483. <thead>
  484. <tr>
  485. <th>Name</th>
  486. <th>Status</th>
  487. <th>Notes</th>
  488. </tr>
  489. </thead>
  490. <tbody>
  491. <tr>
  492. <td>John</td>
  493. <td>Approved</td>
  494. <td>None</td>
  495. </tr>
  496. <tr>
  497. <td>Jamie</td>
  498. <td>Approved</td>
  499. <td>Requires call</td>
  500. </tr>
  501. <tr>
  502. <td>Jill</td>
  503. <td>Denied</td>
  504. <td>None</td>
  505. </tr>
  506. </tbody>
  507. <tfoot>
  508. <th>3 People</th>
  509. <th>2 Approved</th>
  510. <th></th>
  511. </tfoot>
  512. </table>
  513. </div>
  514. <div class="example">
  515. <h4 class="ui header">Inverted</h4>
  516. <p>A tables colors can be inverted</p>
  517. <table class="ui inverted table">
  518. <thead>
  519. <tr>
  520. <th>Name</th>
  521. <th>Status</th>
  522. <th>Notes</th>
  523. </tr>
  524. </thead>
  525. <tbody>
  526. <tr>
  527. <td>John</td>
  528. <td>Approved</td>
  529. <td>None</td>
  530. </tr>
  531. <tr>
  532. <td>Jamie</td>
  533. <td>Approved</td>
  534. <td>Requires call</td>
  535. </tr>
  536. <tr>
  537. <td>Jill</td>
  538. <td>Denied</td>
  539. <td>None</td>
  540. </tr>
  541. </tbody>
  542. <tfoot>
  543. <th>3 People</th>
  544. <th>2 Approved</th>
  545. <th></th>
  546. </tfoot>
  547. </table>
  548. </div>
  549. <div class="another example">
  550. <table class="ui inverted red table">
  551. <thead>
  552. <tr>
  553. <th>Name</th>
  554. <th>Status</th>
  555. <th>Notes</th>
  556. </tr>
  557. </thead>
  558. <tbody>
  559. <tr>
  560. <td>John</td>
  561. <td>Approved</td>
  562. <td>None</td>
  563. </tr>
  564. <tr>
  565. <td>Jamie</td>
  566. <td>Approved</td>
  567. <td>Requires call</td>
  568. </tr>
  569. <tr>
  570. <td>Jill</td>
  571. <td>Denied</td>
  572. <td>None</td>
  573. </tr>
  574. </tbody>
  575. <tfoot>
  576. <th>3 People</th>
  577. <th>2 Approved</th>
  578. <th></th>
  579. </tfoot>
  580. </table>
  581. </div>
  582. <div class="example">
  583. <h4 class="ui header">Definition</h4>
  584. <p>A table may be formatted specifically to provide definitions</p>
  585. <table class="ui definition table">
  586. <thead>
  587. <th>Behavior</th>
  588. <th>Arguments</th>
  589. <th>Description</th>
  590. </thead>
  591. <tbody>
  592. <tr>
  593. <td>reset rating</td>
  594. <td>None</td>
  595. <td>Resets rating to default value</td>
  596. </tr>
  597. <tr>
  598. <td>set rating</td>
  599. <td>rating (integer)</td>
  600. <td>Sets the current star rating to specified value</td>
  601. </tr>
  602. </table>
  603. </div>
  604. <div class="example">
  605. <h4 class="ui header">Sortable</h4>
  606. <p>A table may allow a user to sort contents by clicking on a table header.</p>
  607. <div class="ui warning message">Adding a classname of <code>ascending</code> or <code>descending</code> to the <code>th</code> will show the user the direction of sort. This example uses a modified version of the kylefox's <a href="https://github.com/kylefox/jquery-tablesort">tablesort plugin</a> to provide the proper class names.
  608. </div>
  609. <table class="ui sortable table">
  610. <thead>
  611. <tr>
  612. <th>Name</th>
  613. <th>Status</th>
  614. <th>Notes</th>
  615. </tr>
  616. </thead>
  617. <tbody>
  618. <tr>
  619. <td>John</td>
  620. <td>No Action</td>
  621. <td>None</td>
  622. </tr>
  623. <tr>
  624. <td>Jamie</td>
  625. <td class="positive">Approved</td>
  626. <td class="warning">Requires call</td>
  627. </tr>
  628. <tr>
  629. <td>Jill</td>
  630. <td class="negative">Denied</td>
  631. <td>None</td>
  632. </tr>
  633. </tbody>
  634. <tfoot>
  635. <th>3 People</th>
  636. <th>2 Approved</th>
  637. <th></th>
  638. </tfoot>
  639. </table>
  640. </div>
  641. <div class="example">
  642. <h4 class="ui header">Padded</h4>
  643. <p>A table may sometimes need to be more padded for legibility</p>
  644. <table class="ui padded table">
  645. <thead>
  646. <tr>
  647. <th>Name</th>
  648. <th>Status</th>
  649. <th>Notes</th>
  650. </tr>
  651. </thead>
  652. <tbody>
  653. <tr>
  654. <td>John</td>
  655. <td>Approved</td>
  656. <td>He is a very nice guy and I enjoyed talking to him on the telephone. I hope we get to talk again.</td>
  657. </tr>
  658. <tr>
  659. <td>Jamie</td>
  660. <td>Approved</td>
  661. <td>Jamie was not interested in purchasing our product.</td>
  662. </tr>
  663. </tbody>
  664. </table>
  665. </div>
  666. <div class="another example">
  667. <table class="ui very padded table">
  668. <thead>
  669. <tr>
  670. <th>Name</th>
  671. <th>Status</th>
  672. <th>Notes</th>
  673. </tr>
  674. </thead>
  675. <tbody>
  676. <tr>
  677. <td>John</td>
  678. <td>Approved</td>
  679. <td>He is a very nice guy and I enjoyed talking to him on the telephone. I hope we get to talk again.</td>
  680. </tr>
  681. <tr>
  682. <td>Jamie</td>
  683. <td>Approved</td>
  684. <td>Jamie was not interested in purchasing our product.</td>
  685. </tr>
  686. </tbody>
  687. </table>
  688. </div>
  689. <div class="example">
  690. <h4 class="ui header">Compact</h4>
  691. <p>A table may sometimes need to be more compact to make more rows visible at a time</p>
  692. <table class="ui compact table">
  693. <thead>
  694. <tr>
  695. <th>Name</th>
  696. <th>Status</th>
  697. <th>Notes</th>
  698. </tr>
  699. </thead>
  700. <tbody>
  701. <tr>
  702. <td>John</td>
  703. <td>Approved</td>
  704. <td>None</td>
  705. </tr>
  706. <tr>
  707. <td>Jamie</td>
  708. <td>Approved</td>
  709. <td>Requires call</td>
  710. </tr>
  711. <tr>
  712. <td>John</td>
  713. <td>Approved</td>
  714. <td>None</td>
  715. </tr>
  716. <tr>
  717. <td>Jamie</td>
  718. <td>Approved</td>
  719. <td>Requires call</td>
  720. </tr>
  721. <tr>
  722. <td>John</td>
  723. <td>Approved</td>
  724. <td>None</td>
  725. </tr>
  726. <tr>
  727. <td>Jamie</td>
  728. <td>Approved</td>
  729. <td>Requires call</td>
  730. </tr>
  731. <tr>
  732. <td>John</td>
  733. <td>Approved</td>
  734. <td>None</td>
  735. </tr>
  736. <tr>
  737. <td>Jamie</td>
  738. <td>Approved</td>
  739. <td>Requires call</td>
  740. </tr>
  741. </tbody>
  742. </table>
  743. </div>
  744. <div class="another example">
  745. <table class="ui very compact table">
  746. <thead>
  747. <th>Name</th>
  748. <th>Status</th>
  749. <th>Another Status</th>
  750. <th>Notes</th>
  751. </thead>
  752. <tbody>
  753. <tr>
  754. <td>John</td>
  755. <td>Approved</td>
  756. <td>Approved</td>
  757. <td>None</td>
  758. </tr>
  759. <tr>
  760. <td>Jamie</td>
  761. <td>Approved</td>
  762. <td>Approved</td>
  763. <td>Requires call</td>
  764. </tr>
  765. <tr>
  766. <td>John</td>
  767. <td>Approved</td>
  768. <td>None</td>
  769. </tr>
  770. <tr>
  771. <td>Jamie</td>
  772. <td>Approved</td>
  773. <td>Approved</td>
  774. <td>Requires call</td>
  775. </tr>
  776. <tr>
  777. <td>John</td>
  778. <td>Approved</td>
  779. <td>Approved</td>
  780. <td>None</td>
  781. </tr>
  782. <tr>
  783. <td>Jamie</td>
  784. <td>Approved</td>
  785. <td>Approved</td>
  786. <td>Requires call</td>
  787. </tr>
  788. <tr>
  789. <td>John</td>
  790. <td>Approved</td>
  791. <td>Approved</td>
  792. <td>None</td>
  793. </tr>
  794. <tr>
  795. <td>Jamie</td>
  796. <td>Approved</td>
  797. <td>Approved</td>
  798. <td>Requires call</td>
  799. </tr>
  800. </tbody>
  801. </table>
  802. </div>
  803. <div class="example">
  804. <h4 class="ui header">Size</h4>
  805. <p>A table can also be small or large</p>
  806. <table class="ui small table">
  807. <thead>
  808. <tr>
  809. <th>Name</th>
  810. <th>Status</th>
  811. <th>Notes</th>
  812. </tr>
  813. </thead>
  814. <tbody>
  815. <tr>
  816. <td>John</td>
  817. <td>Approved</td>
  818. <td>None</td>
  819. </tr>
  820. <tr>
  821. <td>Jamie</td>
  822. <td>Approved</td>
  823. <td>Requires call</td>
  824. </tr>
  825. <tr>
  826. <td>Jill</td>
  827. <td>Denied</td>
  828. <td>None</td>
  829. </tr>
  830. </tbody>
  831. <tfoot>
  832. <th>3 People</th>
  833. <th>2 Approved</th>
  834. <th></th>
  835. </tfoot>
  836. </table>
  837. </div>
  838. <div class="another example">
  839. <table class="ui large table">
  840. <thead>
  841. <tr>
  842. <th>Name</th>
  843. <th>Status</th>
  844. <th>Notes</th>
  845. </tr>
  846. </thead>
  847. <tbody>
  848. <tr>
  849. <td>John</td>
  850. <td>Approved</td>
  851. <td>None</td>
  852. </tr>
  853. <tr>
  854. <td>Jamie</td>
  855. <td>Approved</td>
  856. <td>Requires call</td>
  857. </tr>
  858. <tr>
  859. <td>Jill</td>
  860. <td>Denied</td>
  861. <td>None</td>
  862. </tr>
  863. </tbody>
  864. <tfoot>
  865. <th>3 People</th>
  866. <th>2 Approved</th>
  867. <th></th>
  868. </tfoot>
  869. </table>
  870. </div>
  871. </div>