File "admin-flyers-products-delete.tmpl"

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

{extends file='layout-admin.tmpl'}
<html>
  <body>
    {block name="breadcrumbs"}
    <div class="breadcrumbs">
      <a href="{$base_url}/admin/flyers">Volantini</a> <span class="divider">&raquo;</span>
      <a href="{$base_url}/admin/flyers/{$flyer.id}">{$flyer.title}</a> <span class="divider">&raquo;</span>
      <strong>{$product.title}</strong>
    </div>
    {/block}
    {block name="content"}
    <div class="sheet">
      <div class="sheet-header">
        <h1>
          Elimina prodotto
          <small>{$product.title}</small>
        </h1>
      </div>
      <div class="sheet-body">
        <div class="alert alert-danger">
          <strong>Sei sicuro di voler procedere con l'eliminazione del prodotto?</strong>
        </div>
        <form class="form-horizontal" method="post" action="" enctype="multipart/form-data">
          <fieldset>
            <legend>1. Dati prodotto</legend>
            <div class="form-group">
              <label class="control-label col-md-2" for="title">Volantino</label>
              <div class="controls col-md-10">
                <p class="help-block">
                  {$flyer.title}
                </p>
              </div>
            </div>
            <div class="form-group">
              <label class="control-label col-md-2" for="title">Prodotto</label>
              <div class="controls col-md-10">
                <p class="help-block">
                  {$product.title}
                </p>
              </div>
            </div>
          </fieldset>
          <div class="form-group"><div class="col-md-offset-2 col-md-10">
            <button type="submit" class="btn btn-primary">Elimina il prodotto</button>
            <a href="{$base_url}/admin/flyers/{$flyer.id}" class="btn btn-default">Annulla</a>
          </div></div>
        </form>
      </div>
    </div>
    {/block}
  </body>
</html>