<%= link_to t(:channels), channels_path %> » <%= link_to channel_path(@channel.id) do %> <%= t(:channel) %> <%= @channel.id %><% end %> » <%= t(:api_keys) %>

<%= t(:api_key_write) %>

<%= @key %>

<%= button_to t(:api_key_write_new), channel_api_keys_path(@channel, :write => 1), :confirm => t(:confirm_new_api_key) %>

<%= t(:api_key_read) %>

<% @read_keys.each do |read_key| %>
<%= t(:api_key_key) %>: <%= read_key.api_key %>
<%= t(:note) %>: <%= form_for read_key, :as => :api_key, :url => { :controller => 'api_keys', :action => 'update' }, :html => {:method => 'put'} do |f| %> <%= f.text_area :note, :cols => 30, :rows => 4 %>
<%= f.hidden_field :api_key, :value => read_key.api_key %>
<%= f.submit t(:note_save) %>
<% end %> <%= button_to t(:api_key_delete), { :controller => 'api_keys', :action => 'destroy', :api_key => read_key.api_key}, :confirm => t(:confirm_read_key_delete) %>


<% end %> <%= button_to t(:api_key_read_new), channel_api_keys_path(@channel, :write => 0), %>