@extends('BaseSistemaWeb') @section('CSS') {{ HTML::style('DataTables/dataTables.bootstrap.min.css') }} {{ HTML::style('DataTables/responsive.dataTables.min.css') }} @stop @section('Contenido')
E-Mail Marketing
@if (Session::has('message'))
{{ Session::get('message') }}
@endif
Plantillas de correo electrónico
Nombre de la plantilla
Tipo de plantilla
Imágen
Acciones
{{ HTML::linkRoute('SysWebEmailMarketingPlantillasCrear', 'Crear', array(), array('class' => 'btn btn-success btnAgregar', 'id' => 'btnSuscriptoresAgregar')) }}
@stop @section('JS') {{ HTML::script('DataTables/jquery.dataTables.min.js') }} {{ HTML::script('DataTables/dataTables.bootstrap.min.js') }} {{ HTML::script('DataTables/dataTables.responsive.min.js') }} @stop @section('JSOr') $("#tblPlantillasCorreos").DataTable({ "processing": true, "serverSide": true, "ajax": "{{ URL::route('SysWebEmailMarketingPlantillas') }}", columns: [ {data: "nombre", name: "nombre"}, {data: "tipo", name: "tipo", "searchable": false, "orderable": false}, {data: "rutaImagen", name: "rutaImagen", "searchable": false, "orderable": false}, {data: "acciones", name: "acciones", "searchable": false, "orderable": false, "class": "text-center"} ], "language": { "url": "{{ asset('DataTables/Spanish.json') }}" }, "fnDrawCallback": function( oSettings ) { $(".tooltips").tooltip(); }, autoWidth: false, responsive: true }); @if(Session::has('EliminarMensajeS')) new PNotify({ title: "Realizado", text: "{{ Session::get('EliminarMensajeS') }}", type: "success" }); @endif @if(Session::has('EliminarMensajeE')) new PNotify({ title: "Realizado", text: "{{ Session::get('EliminarMensajeE') }}", type: "error" }); @endif @stop