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.

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