Sha256: 767aba94998441861979ded3cbfb10425ba9a1eec166c9b40cb40fdb4792bc48

Contents?: true

Size: 1.65 KB

Versions: 6

Compression:

Stored size: 1.65 KB

Contents

<div class="float-right">
  <%= link_to I18n.t("terms_app.misc.back"), categories_path, class: " btn btn-primary" %>
  <%= link_to I18n.t("terms_app.categories.show.new"), new_category_term_path(@category.name), class: " btn btn-success"%>
</div>

<h2>
  <%= I18n.t("terms_app.categories.show.title", name: @category.name) %>
</h2>


<div class="card">
 
  <div class="card-body">
    
    <div class="table-responsive">
      <table class="table card-table table-vcenter text-nowrap">
        <thead>
          <tr>
            <th><%= I18n.t("terms_app.categories.show.table.id") %></th>
            <th><%= I18n.t("terms_app.categories.show.table.content") %></th>
            <th><%= I18n.t("terms_app.categories.show.table.state") %></th>
            <th><%= I18n.t("terms_app.categories.show.table.updated_at") %></th>
            <th></th>
          </tr>
        </thead>

        <tbody>
          <% @terms.each do |term| %>
            <tr>
              <td><%= term.id %></td>
              <td><%= truncate(term.description, length: 17, separator: " ", omission: '...') %></td>
              <td>
                <span class="tag <%=state_color(term.state)%>">
                  <%= I18n.t("terms_app.states.#{term.state}") %>
                </span>
              
              </td>
              <td><%= term.updated_at %></td>
              <td><%= link_to I18n.t("terms_app.categories.show.table.show"), category_term_path(@category.name, term), class: "btn btn-sm btn-secondary" %></td>
            </tr>
          <% end %>
        </tbody>
      </table>

      
    </div>
  </div> 
</div>

<%= will_paginate @terms, renderer: PolicyManager::BootstrapLinkRenderer %>


Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
gdpr_rails-0.5.1 app/views/policy_manager/categories/show.html.erb
gdpr_rails-0.5.0 app/views/policy_manager/categories/show.html.erb
gdpr_rails-0.4.0 app/views/policy_manager/categories/show.html.erb
gdpr_rails-0.3.4 app/views/policy_manager/categories/show.html.erb
gdpr_rails-0.3.3 app/views/policy_manager/categories/show.html.erb
gdpr_rails-0.3.2 app/views/policy_manager/categories/show.html.erb