Advertisement
Guest User

Untitled

a guest
Aug 21st, 2014
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.86 KB | None | 0 0
  1.  {snippet articles}
  2.  <br /> <br />
  3.  <table class="table-article-create">
  4.     <thead>
  5.         <tr>
  6.             <th>ID</th>
  7.             <th><input type="checkbox" id="select_all"></th>
  8.             <th>Title</th>         
  9.             <th>Content</th>
  10.             <th>Author</th>
  11.             <th>Date</th>
  12.             <th>Category</th>
  13.         </tr>
  14.     </thead>
  15.     <tbody>
  16.         <tr n:foreach = "$articles as $article">
  17.    
  18.         <td>{$article->id}</td>
  19.         <td><input class="checkbox" id="artCheckbox" type="checkbox" name="selectCheckbox" data-id="{$article->id}"></td>
  20.     <td>{$article->title|striptags}</td>
  21.     <td class="content">
  22.    
  23.    
  24.     {!$article->content|substr:0,35|striptags}
  25.     </td>
  26.     <td>{$article->author ? $article->author:('Neznámý')}</td>
  27.     <td>{$article->datetime}</td>
  28.     <td>{($category = $article->ref('categories','categories_id')) ? $category->name:('Nezařazeno')}</td>
  29.    
  30.  </tr>
  31. </tbody>
  32.  </table>
  33.     {/snippet}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement