<?php $__env->startSection('CSS'); ?>
<?php $__env->stopSection(); ?>


<?php $__env->startSection('Contenido'); ?>
<div class="row">
	<div class="col-md-12">
		<h2><i class="fa fa-envelope-o"></i> E-Mail Marketing </h2>
	</div><!--/col-md-12-->
</div><!--/row-->

<div class="row">
	<?php /*
	<div class="col-md-12">
		<nav class="navbar navbar-inverse">
			<ul class="nav navbar-nav">
				<li><a href="<?php echo URL::to('templates'); ?>">Ver todos los Templates</a></li>
				<li><a href="<?php echo URL::to('templates/create'); ?>">Crear un Template</a>
			</ul>
		</nav>
	</div>
	*/ ?>
	<div class="col-md-12">
		<?php if(Session::has('message')): ?>
		<div class="alert alert-info"><?php echo Session::get('message'); ?></div>
		<?php endif; ?>
	</div>
</div>

<div class="row">
	<div class="col-md-12">
		<div class="block-web">
			<div class="header"> <h3 class="content-header"> Perfiles para envíos de correo  </h3> </div>
			<div class="porlets-content">
				<div class="table-responsive">
					<table class="table table-striped table-bordered table-hover">
						<thead>
							<tr>
								<th class="col-md-4"> Nombre de remitente </th>
								<th class="col-md-4"> Correo de remitente </th>
								<th class=""> Acciones </th>
							</tr>
						</thead>
						<tbody>
							<?php $__empty_1 = true; foreach($ConfiguracionesEmail as $ConfiguracioneEmail): $__empty_1 = false; ?>
							<tr>
								<td> <?php echo $ConfiguracioneEmail->remitente; ?> </td>
								<td> <?php echo $ConfiguracioneEmail->correo_electronico; ?> </td>
								<td>
									<?php echo HTML::decode(HTML::linkRoute('SysWebEmailMarketingConfPerfilesEditar', '<i class="fa fa-pencil-square-o"></i>', array($ConfiguracioneEmail->id), array('class' => 'btn btn-warning tooltips', 'data-toggle' => 'tooltip', 'data-original-title' => 'Editar'))); ?>

									<?php /*
									<?php echo Form::open(array('route' => 'SysWebEmailMarketingConfPerfilesEliminar', 'method'=> 'post', 'style' => 'display: inline-block;')); ?>

										<?php echo Form::hidden('id', $ConfiguracioneEmail->id, array('id' => 'idP')); ?>

										<button type="submit" class="btn btn-danger tooltips" data-toggle="tooltip" data-original-title="Eliminar"><i class="fa fa-trash-o"></i></button>
									<?php echo Form::close(); ?>

									*/ ?>
								</td>
							</tr>
							<?php endforeach; if ($__empty_1): ?>
							<tr class="danger"> <td colspan="3"> No existe ningún perfil agregado </td> </tr>
							<?php endif; ?>
						</tbody>
					</table>
				</div>
			</div>
			<div class="bottom">
				<?php echo HTML::linkRoute('SysWebEmailMarketingConfPerfilesAgregar', 'Crear', array(), array('class' => 'btn btn-primary')); ?>

			</div>
		</div>
	</div>
</div><!--/row end-->
<?php $__env->stopSection(); ?>

<?php $__env->startSection('JS'); ?>
<?php $__env->stopSection(); ?>

<?php $__env->startSection('JSOr'); ?>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('BaseSistemaWeb', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>