Sha256: 8218ea6e55f9a4444c7ceb73f10488fe6294c7861fd02c7c8b4bf63eeb01b2f5

Contents?: true

Size: 892 Bytes

Versions: 26

Compression:

Stored size: 892 Bytes

Contents

%h1= t('.title')

%table.table.table-striped
  %thead
    %th= EgovUtils::RegistrationRequest.human_attribute_name('fullname')
    %th= EgovUtils::RegistrationRequest.human_attribute_name('created_at')
    %th= EgovUtils::RegistrationRequest.human_attribute_name('status')
    %th= t('label_actions')
  %tbody
    - if @registration_requests.empty?
      %tr
        %td{colspan: 4}= t('label_no_entries')
    - @registration_requests.each do |request|
      %tr
        %td
          %div= request.fullname
          %small= request.mail
        %td= l(request.created_at)
        %td= t("registration_request.statuses.#{request.status}")
        %td
          = link_to t('.show'), egov_utils.registration_request_path(request), class: 'btn btn-secondary btn-sm'

.row
  .col-md-4
    = page_entries_info @registration_requests
  .col-md-4
    = paginate @registration_requests
  .col-md-4

Version data entries

26 entries across 26 versions & 1 rubygems

Version Path
egov_utils-1.4.1 app/views/egov_utils/registration_requests/index.html.haml
egov_utils-1.4.0 app/views/egov_utils/registration_requests/index.html.haml
egov_utils-1.3.0 app/views/egov_utils/registration_requests/index.html.haml
egov_utils-1.2.4 app/views/egov_utils/registration_requests/index.html.haml
egov_utils-1.2.3 app/views/egov_utils/registration_requests/index.html.haml
egov_utils-1.2.2 app/views/egov_utils/registration_requests/index.html.haml