list.pt 1.13 KB
<div metal:use-macro="load: ../layout-menu.pt">
 <div metal:fill-slot="head">
  <link href="/static/grid.css" rel="stylesheet"/>
 </div>
 <div metal:fill-slot="content">
  <h1>
   Log File
  </h1>
  <div tal:content="structure form"/>
  <div tal:condition="request.GET.get('lihat')">
   <div tal:condition="not count" class="alert alert-danger">
    Tidak ada hasil.
   </div>
   <div tal:condition="count">
    <div class="alert alert-success">
     Ada ${count} hasil.
    </div>
    <table class="table table-striped table-hover">
     <thead>
      <tr>
       <th>
        ID
       </th>
       <th>
        Keterangan
       </th>
      </tr>
     </thead>
     <tbody>
      <tr tal:repeat="row rows">
       <td>
        ${row.id}
       </td>
       <td tal:condition="row.line.find('\n') < 0">
        ${row.line}
       </td>
       <td tal:condition="row.line.find('\n') > -1">
        <pre class="errormsg">${row.line}</pre>
       </td>
      </tr>
     </tbody>
    </table>
    <center tal:content="structure rows.pager(format='$link_previous ~4~ $link_next')"/>
   </div><!-- condition count -->
  </div><!-- condition lihat -->
 </div>
</div>