Sha256: 101899b619e23ece2344ed9c47d5000d55fd65210c486cbd28afd578dba78f9a
Contents?: true
Size: 777 Bytes
Versions: 4
Compression:
Stored size: 777 Bytes
Contents
<% if !defined?(objeto) %> Falta parĂ¡metro <tt>objeto</tt>. e.g :caso <% return %> <% end %> <table class="table table-bordered table-sm"> <thead class="thead-light"> <tr> <th>Solicitante</th> <th>Fecha</th> <th><%= Msip::Solicitud.human_attribute_name(:Solicitud) %></th> <th>Estado</th> <th>Destinatario(s)</th> </tr> </thead> <tbody id="filas_solicitud"> <% objeto.solicitud.each do |sol| %> <tr> <td><%= sol.usuario.nusuario %></td> <td> <%= sol.fecha_localizada %> </td> <td> <%= sol.solicitud %> </td> <td> <%= sol.estadosol.nombre if sol.estadosol %> </td> <td> <%= sol.usuarionotificar.pluck(:nusuario).join(', ') %> </td> </tr> <% end %> </tbody> </table>
Version data entries
4 entries across 4 versions & 1 rubygems