Base
This commit is contained in:
38
resources/views/proyectos/unidades/assign.blade.php
Normal file
38
resources/views/proyectos/unidades/assign.blade.php
Normal file
@ -0,0 +1,38 @@
|
||||
@extends('layout.base')
|
||||
|
||||
@section('content')
|
||||
<div class="row page-heading">
|
||||
<h2>Asignar Tipo a Unidades - <a href="{{nUrl('proyectos', 'list_unidades', ['proyecto', $proyecto->id])}}">{{$proyecto->descripcion}}</a></h2>
|
||||
</div>
|
||||
<form class="form-horizontal" method="post" action="{{nUrl('proyecto_tipo_unidades', 'asignar', ['proyecto' => $proyecto->id])}}">
|
||||
<table class="table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Unidad</th>
|
||||
<th>Tipo</th>
|
||||
<th>PT</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@foreach ($libres as $unidad)
|
||||
<tr>
|
||||
<td>{{$unidad->descripcion}}</td>
|
||||
<td>{{$unidad->tipo()->descripcion}}</td>
|
||||
<td><select name="tipo{{$unidad->id}}" class="form-control">
|
||||
<option value="0">---</option>
|
||||
@foreach ($tipos as $tipo)
|
||||
<option value="{{$tipo->id}}"
|
||||
@if ($tipo->tipo == $unidad->tipo)
|
||||
selected="selected"
|
||||
@endif
|
||||
>{{$tipo->descripcion}}</option>
|
||||
@endforeach
|
||||
</select></td>
|
||||
@endforeach
|
||||
</tbody>
|
||||
</table>
|
||||
<div class="form-group">
|
||||
<div class="col-md-offset-2 col-md-2"><button class="form-control" type="submit">Asignar</button></div>
|
||||
</div>
|
||||
</form>
|
||||
@endsection
|
Reference in New Issue
Block a user