Sha256: 28f9fed8250434e0fbc0a4832743160983ce7342d766d9e618370ad50824f17c

Contents?: true

Size: 1.51 KB

Versions: 3

Compression:

Stored size: 1.51 KB

Contents

<div id="content_detail" class="ui-corner-all ui-widget-content">
<h1 class="title"><%= t('page.listing', model: t('activerecord.models.language')) -%></h1>
<div id="content_list">
<p id="notice"><%= notice %></p>

<table class="table table-striped index">
  <tr>
    <th id="position"></th>
    <th><%= t('activerecord.attributes.language.name') -%></th>
    <th><%= t('activerecord.attributes.language.native_name') -%></th>
    <th><%= t('activerecord.attributes.language.display_name') -%></th>
    <th><%= 'ISO 639-1' -%></th>
    <th><%= 'ISO 639-2' -%></th>
    <th><%= 'ISO 639-3' -%></th>
    <th></th>
  </tr>

<%- @languages.each do |language| -%>
  <tr class="line<%= cycle("0", "1") -%>">
    <td>
      <%- if policy(language).update? -%>
        <%= move_position(language) -%>
      <%- end -%>
    </td>
    <td><%= language.name -%></td>
    <td><%= language.native_name -%></td>
    <td><%= link_to language.display_name, language -%></td>
    <td><%= language.iso_639_1 -%></td>
    <td><%= language.iso_639_2 -%></td>
    <td><%= language.iso_639_3 -%></td>
    <td>
      <%- if policy(language).update? -%>
        <%= link_to t('page.edit'), edit_language_path(language) -%>
      <%- end -%>
    </td>
  </tr>
<%- end -%>
</table>

<%= paginate(@languages) -%>
</div>
</div>

<div id="submenu" class="ui-corner-all ui-widget-content">
  <%- if policy(Language).create? -%>
    <ul>
      <li><%= link_to t('page.new', model: t('activerecord.models.language')), new_language_path -%></li>
    </ul>
  <%- end -%>
</div>

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
enju_biblio-0.4.0.rc.1 app/views/languages/index.html.erb
enju_biblio-0.4.0.beta.2 app/views/languages/index.html.erb
enju_biblio-0.4.0.beta.1 app/views/languages/index.html.erb