Browse Source

Improve layout

master
Adrian Short 11 years ago
parent
commit
2e42b6b076
1 changed files with 5 additions and 14 deletions
  1. +5
    -14
      app/views/layers/index.html.haml

+ 5
- 14
app/views/layers/index.html.haml View File

@@ -1,19 +1,10 @@
%h1 Listing layers
%h1 Layers

%table
%tr
%th Name
%th
%th
%th
= link_to 'New Layer', new_layer_path, :class => 'button'

%table
- @layers.each do |layer|
%tr
%td= layer.name
%td= link_to 'Show', layer
%td= link_to layer.name, layer
%td= link_to 'Edit', edit_layer_path(layer)
%td= link_to 'Destroy', layer, :method => :delete, :data => { :confirm => 'Are you sure?' }

%br

= link_to 'New Layer', new_layer_path
%td= link_to 'Delete', layer, :method => :delete, :data => { :confirm => 'Are you sure?' }

Loading…
Cancel
Save