Sha256: 8d14e5b5113112f1d38a2b9e7061e20cffdc3d047b6b880520fd4bed2ca636b0

Contents?: true

Size: 1.2 KB

Versions: 4

Compression:

Stored size: 1.2 KB

Contents

<%= provide :page_title, I18n.t('links.index.header') %>
<%= provide :breadcrumb do %>
    <li><%= I18n.t('activerecord.models.link.other') %></li>
<% end %>

<main id="main-container" style="min-height: 530px;">
  <div class="content bg-gray-lighter">
    <div class="row items-push">
      <div class="col-sm-7">
        <h1 class="page-heading">
          <%= t('links.index.title') %>
        </h1>
      </div>
    </div>
  </div>
  <div class="content">
    <div class="block">
      <div class="block-header text-right">
        <h3 class="block-title">
        </h3>
        <span >
          <%= link_to I18n.t('links.new.header'), new_gamification_item_path, class: 'btn btn-sm btn-square btn-success' %>
        </span>
      </div>
      <div class="block-content">
        <table class="table table-striped">
          <thead>
          <tr>
            <th><%=t 'activerecord.attributes.link.name' %></th>
            <th class="text-center" style="width: 150px;"><%=t 'misc.actions' %></th>
          </tr>
          </thead>
          <tbody id='link_categories'>
          <%= render 'collection', collection: @gamification_items %>
          </tbody>
        </table>
      </div>
    </div>
  </div>
</main>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
go_gamification-0.0.20 app/views/gamification/items/index.html.erb
go_gamification-0.0.19 app/views/gamification/items/index.html.erb
go_gamification-0.0.18 app/views/gamification/items/index.html.erb
go_gamification-0.0.17 app/views/gamification/items/index.html.erb