File "admin-notifications.tmpl"

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

{extends file='layout-admin.tmpl'}
<html>
  <body>
    {block name="breadcrumbs"}
    <div class="breadcrumbs">
      <strong>Notifiche</strong>
    </div>
    {/block}
    {block name="content"}
    <div class="sheet">
      <div class="sheet-header">
        <h1>
          Notifiche
          <small>Gestione delle notifiche verso l'app</small>
        </h1>
      </div>
      <div class="sheet-body">
        <form method="get" action="" class="form-search well">
          <div class="row">
            <div class="col-sm-12">
              <input type="text" name="q" class="form-control searchquery" value="{_fr('q')}" data-behaviour="autofocus" autocomplete="off">
            </div>
          </div>
          <button type="submit" class="btn btn-default">Cerca</button>
          <a href="{$base_url}/admin/notifications/add" class="btn btn-primary pull-right"><i class="glyphicon glyphicon-plus"></i> Nuovo elemento</a>
        </form>
        <div class="table-responsive">
          <table class="table table-bordered table-striped">
            <thead>
              <tr>
                <th style="width: 90px;">ID</th>
                <th>Titolo</th>
                <th style="width: 210px;">Azioni</th>
              </tr>
            </thead>
            <tbody>
              {foreach $notifications as $notification}
              <tr>
                <td><a href="{$base_url}/admin/notifications/{$notification.id}">#{$notification.id}</a></td>
                <td>{$notification.title}</td>
                <td>
                  <a href="{$base_url}/admin/notifications/{$notification.id}/push" class="btn btn-default btn-xs btn-info">PUSH</a>
                  <a href="{$base_url}/admin/notifications/{$notification.id}/edit" class="btn btn-default btn-xs">MODIFICA</a>
                  <a href="{$base_url}/admin/notifications/{$notification.id}/delete" class="btn btn-default btn-xs btn-danger">ELIMINA</a>
                </td>
              </tr>
              {/foreach}
            </tbody>
          </table>
        </div>
        {include "admin-pagination.tmpl"}
      </div>
    </div>
    {/block}
  </body>
</html>