Sha256: 1e9f807573cd9d73a5d078bfd57018e25378f6510598a268a2e2bad87884bb93
Contents?: true
Size: 1.25 KB
Versions: 1
Compression:
Stored size: 1.25 KB
Contents
- if translations_changes.empty? .alert.alert-info = t('.no_matches') - else %table.table.table-striped.table-bordered %thead %tr %th = t('.key') %th = t('.locale') %th = t('.user') %th = t('.changes') %th = t('.time') %tbody - translations_changes.each do |change| %tr %td = link_to change.auditable.key.name, change.auditable.key, target: '_blank' %td = change.auditable.lang %td = change.auditable.translator.try TranslationCenter::CONFIG['identifier_type'] %td %ul - change.audited_changes.each do |change, value| %li = format_change(change, value) %td = distance_of_time_in_words_to_now change.created_at = t('.ago') .pagination = link_to t('.first'), dashboard_path(page: 1) - if @page != 1 | = link_to t('.prev'), dashboard_path(page: @page - 1) | = link_to t('.next'), dashboard_path(page: @page + 1) - if @page != @total_pages | = link_to t('.last'), dashboard_path(page: @total_pages) = @page = t('.of') = @total_pages
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
translation_center-1.5.6 | app/views/translation_center/center/_activity.html.haml |