Sha256: 9c8a219636cc4dd8346f04b19a54f55e136208fcecdd3cc2516a7f77487e0050

Contents?: true

Size: 1.03 KB

Versions: 4

Compression:

Stored size: 1.03 KB

Contents

- page_title t('.page_title')

- unless @plugins.present?
  = t('plugins.common.no_updates')
- else
  = form_tag(bulk_upgrade_plugins_path, method: :patch) do
    %table{class: "table table-striped table-hover"}
      %thead
        %tr
          %th.col-xl-2= t('plugins.common.name')
          %th.col-xl-2= t('plugins.common.authors')
          %th.col-xl-6= t('plugins.common.summary')
          %th.col-xl-1= t('plugins.common.installed_version')
          %th.col-xl-1= t('plugins.common.latest_version')
      %tbody
        - @plugins.each do |plugin|
          %tr
            %td
              = check_box_tag("plugins[]", plugin.gem_name, false, id: "plugin_#{plugin.gem_name}")
              %label{for: "plugin_#{plugin.gem_name}"}
                = plugin.gem_name
            %td
              = plugin.authors
            %td
              = plugin.summary
            %td
              = plugin.installed_version
            %td
              = plugin.latest_version
    = submit_tag t("terms.install_latest"), class: "btn btn-primary"

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
fluentd-ui-1.0.0.beta.1 app/views/plugins/updated.html.haml
fluentd-ui-1.0.0.alpha.3 app/views/plugins/updated.html.haml
fluentd-ui-1.0.0.alpha.2 app/views/plugins/updated.html.haml
fluentd-ui-1.0.0.alpha.1 app/views/plugins/updated.html.haml