Sha256: fde248727062c1d620e26983c8debcfc208f6aed8b17c5050c0223f218937076

Contents?: true

Size: 1.28 KB

Versions: 5

Compression:

Stored size: 1.28 KB

Contents

<% add_decidim_page_title(t("title", scope: "decidim.admin.conflicts")) %>
<div class="card">
  <div class="item_show__header">
    <h1 class="item_show__header-title">
      <%= t("title", scope: "decidim.admin.conflicts") %>
    </h1>
  </div>
  <div class="table-scroll">
    <table class="table-list">
      <thead>
        <tr>
          <th><%= t("user_name", scope: "decidim.admin.conflicts") %></th>
          <th><%= t("managed_user_name", scope: "decidim.admin.conflicts") %></th>
          <th><%= t("attempts", scope: "decidim.admin.conflicts") %></th>
          <th><%= t("solved", scope: "decidim.admin.conflicts") %></th>
          <th class="table-list__actions"><%= t("title", scope: "decidim.admin.conflicts.transfer") %></th>
        </tr>
      </thead>
      <tbody>
        <% @conflicts.each do |conflict| %>
          <tr>
            <td><%= conflict.current_user.name %></td>
            <td><%= conflict.managed_user.name %></td>
            <td><%= conflict.times %></td>
            <td><%= t(conflict.solved, scope: "decidim.admin.conflicts") %></td>
            <td><%= icon_link_to "download-line", decidim_admin.edit_conflict_path(conflict), t("title", scope: "decidim.admin.conflicts.transfer") %></td>
          </tr>
        <% end %>
      </tbody>
    </table>
  </div>
</div>

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
decidim-admin-0.29.0.rc3 app/views/decidim/admin/conflicts/index.html.erb
decidim-admin-0.29.0.rc2 app/views/decidim/admin/conflicts/index.html.erb
decidim-admin-0.29.0.rc1 app/views/decidim/admin/conflicts/index.html.erb
decidim-admin-0.28.2 app/views/decidim/admin/conflicts/index.html.erb
decidim-admin-0.28.1 app/views/decidim/admin/conflicts/index.html.erb