Advertisement
Guest User

Untitled

a guest
Mar 3rd, 2012
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.68 KB | None | 0 0
  1. <div class="wrapper">
  2.  
  3.             <div class="widget">
  4.  
  5.                 <div class="title"><span class="titleIcon"><input type="checkbox" id="clienteCheck" name="clienteCheck" /></span><h6>Lista de Clientes</h6></div>
  6.  
  7.                 <table cellpadding="0" cellspacing="0" width="100%" class="sTable withCheck mTable" id="checkAll">
  8.  
  9.                     <thead>
  10.  
  11.                         <tr>
  12.  
  13.                             <td class="sortCol"><img src="http://xpto.com/admin/assets/images/icons/tableArrows.png" alt="" /></td>
  14.  
  15.                             <td class="sortCol"><div>Nome do Cliente<span></span></div></td>
  16.  
  17.                             <td class="sortCol"><div>Email<span></span></div></td>
  18.  
  19.                             <td class="sortCol"><div>Encomendas<span></span></div></td>
  20.  
  21.                             <td class="sortCol"><div>Última Encomenda<span></span></div></td>
  22.  
  23.                         </tr>
  24.  
  25.                     </thead>
  26.  
  27.                     <tbody>
  28.  
  29.                                                 <tr>
  30.  
  31.                             <td><input type="checkbox" id="select[]" name="cliente_1" value="1" /></td>
  32.  
  33.                             <td><a href="http://xpto.com/admin/clientes/editar/1">xpto</a></td>
  34.  
  35.                             <td>xpto@xpto.com</td>
  36.  
  37.                             <td>2</td>
  38.  
  39.                             <td></td>
  40.  
  41.                         </tr>
  42.  
  43.                                                 <tr>
  44.  
  45.                             <td><input type="checkbox" id="select[]" name="cliente_2" value="2" /></td>
  46.  
  47.                             <td><a href="http://xpto.com/admin/clientes/editar/2">xpto</a></td>
  48.  
  49.                             <td>lolz@xpto.com</td>
  50.  
  51.                             <td>1</td>
  52.  
  53.                             <td></td>
  54.  
  55.                         </tr>
  56.  
  57.                                             </tbody>
  58.  
  59.                     <tfoot>
  60.  
  61.                         <tr>
  62.  
  63.                             <td colspan="6">
  64.  
  65.                                 <div class="itemActions">
  66.  
  67.                                     <select>
  68.  
  69.                                         <option value="">-- Selecione uma Ação --</option>
  70.  
  71.                                         <option value="Apagar">Apagar</option>
  72.  
  73.                                     </select>
  74.  
  75.                                 </div>
  76.  
  77.                                 <div class="tPagination">
  78.  
  79.                                     <ul><li><a class="active">1</a></li><li><a href="http://xpto.com/admin/clientes/nome/asc/2">2</a></li><li class="next"><a href="http://xpto.com/admin/clientes/nome/asc/2"></a></li></ul>
  80.  
  81.                                
  82.  
  83.                                 </div>
  84.  
  85.                             </td>
  86.  
  87.                         </tr>
  88.  
  89.                     </tfoot>
  90.  
  91.                 </table>
  92.  
  93.             </div>
  94.  
  95.         </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement