Sha256: 6c971982a234353281556745b63a9803d368114f328c936feb04c6b5fea1e0cd
Contents?: true
Size: 1.19 KB
Versions: 3
Compression:
Stored size: 1.19 KB
Contents
<h1>Synchronization sources</h1> <table class="table"> <tr> <th>Identifier</th> <th>Last synchronization</th> <th>Last change (remote)</th> <th width="80px"></th> </tr> <% @sources.each do |source| %> <tr> <td><%= link_to source.identifier, lit.source_path(source) %></td> <td><%= source.last_updated_at.to_s(:db) unless source.last_updated_at.nil? %></td> <td><%= source.get_last_change %></td> <td> <%= link_to lit.synchronize_source_path(source), :title=>t('lit.common.synchronize', :default=>"Synchronize") do %> <%= draw_icon 'refresh' %> <% end %> <%= link_to lit.source_path(source), :title=>t('lit.common.show', :default=>"Show") do %> <%= draw_icon 'zoom-in' %> <% end %> <%= link_to lit.edit_source_path(source), :title=>t('lit.common.edit', :default=>"Edit") do %> <%= draw_icon 'pencil' %> <% end %> <%= link_to lit.source_path(source), :method => :delete, :data => { :confirm => 'Are you sure?' }, :title=>t('lit.common.delete', :default=>"Delete") do %> <%= draw_icon 'trash' %> <% end %> </td> </tr> <% end %> </table> <br /> <%= link_to 'New Source', new_source_path %>
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
lit-0.2.1 | app/views/lit/sources/index.html.erb |
lit-0.2.0 | app/views/lit/sources/index.html.erb |
lit-0.1.0 | app/views/lit/sources/index.html.erb |