@extends('BaseSistemaWeb') @section('CSS') @stop @section('Contenido')

Sitio Web

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

Listado de Plantillas del sitio web {{ $Tema->nombre }}

@forelse($Plantillas as $Plantilla) @empty @endforelse
Nombre Plantilla Acciones
{{ $Plantilla->nombre }} {{-- HTML::linkRoute('SysWebSWebPlantillasxTemaEditar', 'Editar', array($Plantilla->id), array('class' => 'btn btn-warning')) --}} {{ Form::open(array('method'=> 'post', 'route' => 'SysWebSWebPlantillasxTemaDelete', 'style' => 'display: inline-block;', 'class' => 'frm-eliminar')) }} {{ Form::hidden('id', $Plantilla->id, array('id' => 'idP')) }} {{ Form::submit('Eliminar', array('class' => 'btn btn-danger')) }} {{ Form::close() }}
No existe ningúna plantilla agregada
{{ HTML::linkRoute('SysWebSWebPlantillasxTemaCrear', 'Agregar', array($Tema->id), array('class' => 'btn btn-primary')) }} {{ HTML::linkRoute('SysWebSWebTemas', 'Regresar', array(), array('class' => 'btn btn-default')) }}
@stop @section('JS') @stop @section('JSOr') $(".btn-danger").click(function(e){ e.preventDefault() if(confirm("Esta seguro que desea borra la plantilla")){ $(".frm-eliminar").submit(); } }); @stop