From: Michal Fojtik <[email protected]> Signed-off-by: Michal fojtik <[email protected]> --- server/views/accounts/index.html.haml | 11 ----------- server/views/accounts/show.html.haml | 30 ------------------------------ 2 files changed, 0 insertions(+), 41 deletions(-) delete mode 100644 server/views/accounts/index.html.haml delete mode 100644 server/views/accounts/show.html.haml
diff --git a/server/views/accounts/index.html.haml b/server/views/accounts/index.html.haml deleted file mode 100644 index df73d19..0000000 --- a/server/views/accounts/index.html.haml +++ /dev/null @@ -1,11 +0,0 @@ -%h1 Accounts - -%table - %thead - %tr - %th ID - %tbody - - @accounts.each do |account| - %tr - %td - = link_to account, account diff --git a/server/views/accounts/show.html.haml b/server/views/accounts/show.html.haml deleted file mode 100644 index 2688b3e..0000000 --- a/server/views/accounts/show.html.haml +++ /dev/null @@ -1,30 +0,0 @@ -%h1 - = @account[:id] - -%h2 Instances - -%table - %thead - %tr - %th Instance ID - %tbody - - @account[:instance_ids].each do |instance_id| - %tr - %td - = link_to instance_id, instance_url( instance_id ) - -%h2 Images - -%table - %thead - %tr - %th Image ID - %th Description - %tbody - %tbody - - @images.each do |image| - %tr - %td - = link_to image[:id], image_url( image[:id] ) - %td - = image[:description] -- 1.7.4.1
