robertpyke/thesis

View on GitHub
webapp/app/views/layers/show.html.erb

Summary

Maintainability
Test Coverage
<p id="notice"><%= notice %></p>

<p>
  <b>Name:</b>
  <%= @layer.name %>
</p>

<% if @layer.csv_file.present? %>
<p>
  <b>CSV File:</b>
  <%= link_to "Download csv file", @layer.csv_file.url %>
</p>
<% end %>

<% if @layer.renderable_file.present? %>
<p>
  <b>Renderable File:</b>
  <%= link_to "Download renderable file", @layer.renderable_file.url %>
</p>
<% end %>

<%= link_to 'Edit', edit_map_layer_path(@layer.map, @layer) %> |
<%= link_to 'Back', map_layers_path(@layer.map) %>