Sha256: a885ddc140fd8eb064cff869d075cc899561c3899cc8357717668ffab02fd981

Contents?: true

Size: 578 Bytes

Versions: 2

Compression:

Stored size: 578 Bytes

Contents

- if @lps_entries.empty?
  %p No records were found.
- else 
  = ucbr_table_tag(class: 'table-condensed') do
    %thead
      %tr
        %th{style: 'width="1%"'}
        %th First Name
        %th Last Name
        %th Email
        %th Department
    %tbody
      - @lps_entries.each do |entry|
      -   entry_id = "ldap_uid_#{entry.uid}" 
        %tr{id: entry_id, class: ldap_entry_class(entry)}
          %td= link_to_ldap_person_entry(entry) 
          %td= entry.first_name 
          %td= entry.last_name 
          %td= entry.email 
          %td= entry.departments 

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
ucb_rails-0.0.3 app/views/ucb_rails/lps/_results.html.haml
ucb_rails-0.0.2 app/views/ucb_rails/lps/_results.html.haml