File "admin-flyers.tmpl"

Full Path: /srv/www/www.cadoro.it/src/templates/admin-flyers.tmpl
File size: 2.23 KB
MIME-type: text/html
Charset: utf-8

{extends file='layout-admin.tmpl'}
<html>
  <body>
    {block name="breadcrumbs"}
    <div class="breadcrumbs">
      <strong>Volantini</strong>
    </div>
    {/block}
    {block name="content"}
    <div class="sheet">
      <div class="sheet-header">
        <h1>
          Volantini
          <small>Gestione dei volantini dinamici</small>
        </h1>
      </div>
      <div class="sheet-body">
        <form method="get" action="" class="form-search well">
          <input type="text" name="q" class="form-control searchquery" value="{_fr('q')}" data-behaviour="autofocus" autocomplete="off">
          <button type="submit" class="btn btn-default">Cerca</button>
          <a href="{$base_url}/admin/flyers/add" class="btn btn-primary pull-right"><i class="glyphicon glyphicon-plus"></i> Nuovo elemento</a>
        </form>
        <table class="table table-bordered table-striped">
          <thead>
            <tr>
              <th>Titolo</th>
              <th>Sorgente</th>
              <th>Linea</th>
              <th>Pubblicazione</th>
              <th>Offerte dal</th>
              <th>Offerte al</th>
              <th style="width: 180px;">Azioni</th>
            </tr>
          </thead>
          <tbody>
            {foreach $flyers as $flyer}
            <tr>
              <td><a href="{$base_url}/admin/flyers/{$flyer.id}">{$flyer.title}</a></td>
              <td><a href="{$base_url}/admin/flyers/{$flyer.id}">{$flyer.source|default:"&mdash;"}</a></td>
              <td>{_v($flyer.line, $FLYER_LINES)}</td>
              <td><a href="{$base_url}/admin/flyers/{$flyer.id}">{_dd($flyer.date_publishing)}</a></td>
              <td><a href="{$base_url}/admin/flyers/{$flyer.id}">{_dd($flyer.date_begin)}</a></td>
              <td><a href="{$base_url}/admin/flyers/{$flyer.id}">{_dd($flyer.date_end)}</a></td>
              <td>
                <a href="{$base_url}/admin/flyers/{$flyer.id}/edit" class="btn btn-default btn-xs">MODIFICA</a>
                <a href="{$base_url}/admin/flyers/{$flyer.id}/delete" class="btn btn-default btn-xs btn-danger">ELIMINA</a>
              </td>
            </tr>
            {/foreach}
          </tbody>
        </table>
        {include "admin-pagination.tmpl"}
      </div>
    </div>
    {/block}
  </body>
</html>