<% content_for :heading do %>

<%= t ".title" %>

<% end %> <% unless @tokens.empty? %>

<%= t ".my_tokens" %>

<%= t ".list_tokens" %>

<% @tokens.each do |token| %> <%= content_tag_for :tr, token do %> <% end %> <% end %>
<%= t ".application" %> <%= t ".issued_at" %> 
<%= link_to token.client_application.name, token.client_application.url %> <%= token.authorized_at %> <%= form_tag :controller => "oauth", :action => "revoke" do %> <%= hidden_field_tag "token", token.token %> <%= submit_tag t(".revoke") %> <% end %>
<% end %>

<%= t ".my_apps" %>

<% if @client_applications.empty? %>

<%= raw(t(".no_apps", :oauth => "OAuth")) %>

<% else %>

<%= t ".registered_apps" %>

<% @client_applications.each do |client| %> <%= div_for client do %> <%= link_to client.name, :action => :show, :id => client.id %> <% end %> <% end %> <% end %>

<%= link_to t(".register_new"), :action => :new %>