@extends('BaseSistemaWeb') @section('CSS') {{ HTML::style('bootstrap-select/css/bootstrap-select.min.css') }} {{ HTML::style('bootstrap-daterangepicker/daterangepicker.css') }} {{ HTML::style('DataTables/dataTables.bootstrap.min.css') }} {{ HTML::style('DataTables/responsive.dataTables.min.css') }} {{ HTML::style('DataTables/select.dataTables.min.css') }} {{ HTML::style('DataTables/buttons.dataTables.min.css') }} @stop @section('Contenido')

Gestión de servidores de AWS SES

@if (Session::has('message'))
{{ Session::get('message') }}
@endif

Listado de servidores de AWS SES

Nombre Key Secret Region Estado Por defecto Es del cliente Tipo Acciones
{{ HTML::linkRoute('SysWebEmailMarketingSrvAWSSESAgregar', 'Agregar', array(), array('class' => 'btn btn-primary')) }}
@stop @section('JS') {{ HTML::script('bootstrap-select/js/bootstrap-select.min.js') }} {{ HTML::script('bootstrap-select/js/i18n/defaults-es_CL.min.js') }} {{ HTML::script('DataTables/jquery.dataTables.min.js') }} {{ HTML::script('DataTables/dataTables.bootstrap.min.js') }} {{ HTML::script('DataTables/dataTables.responsive.min.js') }} {{ HTML::script('DataTables/dataTables.select.min.js') }} {{ HTML::script('DataTables/dataTables.buttons.min.js') }} {{ HTML::script('bootstrap-daterangepicker/moment.min.js') }} {{ HTML::script('bootstrap-daterangepicker/daterangepicker.js') }} @stop @section('JSOr') var tabla = $("#tblSrvsAWSSES").DataTable({ "processing": true, "serverSide": true, "pageLength": 10, "ordering": false, "searching": false, "ajax": "{{ URL::route('SysWebEmailMarketingSrvAWSSES') }}", columns: [ {data: "nombre", name: "nombre", "searchable": true}, {data: "key", name: "key", "searchable": true}, {data: "secret", name: "secret", "searchable": true}, {data: "region", name: "key", "searchable": true}, {data: "estado", name: "estado", "searchable": false}, {data: "enusopordefecto", name: "enusopordefecto", "searchable": false}, {data: "empresa", name: "empresa", "searchable": false}, {data: "tipo", name: "tipo", "searchable": false}, {data: "acciones", name: "acciones", "searchable": false, "orderable": false, "class": "text-center"} ], "language": { "url": "{{ asset('DataTables/Spanish.json') }}" }, "fnDrawCallback": function( oSettings ) { $(".tooltips").tooltip(); //$(".table-responsive").find("[title]").tooltip(); }, autoWidth: false, columnDefs: [{ "data": null, "defaultContent": "", "className": "control", "orderable": false, "width": "9%", "targets": 0 }], }); $("#btnAsignacionInicial").click(function(e){ $("#btnAsignacionInicial").html(' Cargando').prop("disabled", true); $.post( "{{ URL::route('SysWebEmailMarketingSrvAWSSESAsignacionInicial') }}", {asignacionInicial: true}, function(data){ $.isLoading("hide"); NProgress.done(); $("#btnAsignacionInicial").prop("disabled", false).html("Asignacion inicial"); if(data.success){ new PNotify({ title: "Realizado", text: data.mensaje, type: "success" }); setTimeout( function(){ window.location.reload(); }, 3000 ); } else{ if(data.mensaje != ''){ new PNotify({ title: "Error", text: data.mensaje, type: "error" }); } $.each(data.errMensajes, function(key, value){ if(value != ''){ $("#err"+key).html(value); } else{ $("#err"+key).html(""); } }); } }, "json" ); }); @if(Session::has('MensajeS')) new PNotify({ title: "Realizado", text: "{{ Session::get('MensajeS') }}", type: "success" }); @endif @if(Session::has('MensajeE')) new PNotify({ title: "Realizado", text: "{{ Session::get('MensajeE') }}", type: "error" }); @endif @stop