<%#-- copyright OpenProject My Project Page Plugin Copyright (C) 2011-2014 the OpenProject Foundation (OPF) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. See doc/COPYRIGHT.md for more details. ++#%>

<%=l(:label_my_account)%>

<%=l(:field_login)%>: <%= link_to_user(current_user, :format => :username) %>
<%=l(:field_created_on)%>: <%= format_time(current_user.created_on) %>

<%= l(:label_feeds_access_key) %>

<% if current_user.rss_token %> <%= l(:label_feeds_access_key_created_on, distance_of_time_in_words(Time.now, current_user.rss_token.created_on)) %> <% else %> <%= l(:label_missing_feeds_access_key) %> <% end %> (<%= link_to l(:button_reset), {:action => 'reset_rss_key'}, :method => :post %>)

<% if Setting.rest_api_enabled? %>

<%= l(:label_api_access_key) %>

<%= link_to_function(l(:button_show), "$('api-access-key').toggle();")%>
<%= h(current_user.api_key) %>
<%= javascript_tag("$('api-access-key').hide();") %>

<% if current_user.api_token %> <%= l(:label_api_access_key_created_on, distance_of_time_in_words(Time.now, current_user.api_token.created_on)) %> <% else %> <%= l(:label_missing_api_access_key) %> <% end %> (<%= link_to l(:button_reset), {:action => 'reset_api_key'}, :method => :post %>)

<% end %>