kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.2 KiB
39 lines
1.2 KiB
13 years ago
|
<% content_for :main_menu do %>
|
||
|
<%= render_menu :my_menu %>
|
||
|
<%= expand_current_menu %>
|
||
|
<% end %>
|
||
|
|
||
13 years ago
|
<h3><%=l(:label_my_account_data)%></h3>
|
||
17 years ago
|
|
||
14 years ago
|
<p><%=l(:field_login)%>: <strong><%= link_to_user(@user, :format => :username) %></strong><br />
|
||
17 years ago
|
<%=l(:field_created_on)%>: <%= format_time(@user.created_on) %></p>
|
||
15 years ago
|
|
||
|
|
||
13 years ago
|
<h3><%= l(:label_feeds_access_key) %></h3>
|
||
15 years ago
|
|
||
|
<p>
|
||
17 years ago
|
<% if @user.rss_token %>
|
||
15 years ago
|
<%= l(:label_feeds_access_key_created_on, distance_of_time_in_words(Time.now, @user.rss_token.created_on)) %>
|
||
|
<% else %>
|
||
|
<%= l(:label_missing_feeds_access_key) %>
|
||
|
<% end %>
|
||
|
(<%= link_to l(:button_reset), {:action => 'reset_rss_key'}, :method => :post %>)
|
||
|
</p>
|
||
|
|
||
15 years ago
|
<% if Setting.rest_api_enabled? %>
|
||
13 years ago
|
<h3><%= l(:label_api_access_key) %></h3>
|
||
15 years ago
|
<div>
|
||
15 years ago
|
<%= link_to_function(l(:button_show), "$('api-access-key').toggle();")%>
|
||
14 years ago
|
<pre id='api-access-key' class='autoscroll'><%= h(@user.api_key) %></pre>
|
||
15 years ago
|
</div>
|
||
15 years ago
|
<%= javascript_tag("$('api-access-key').hide();") %>
|
||
15 years ago
|
<p>
|
||
|
<% if @user.api_token %>
|
||
|
<%= l(:label_api_access_key_created_on, distance_of_time_in_words(Time.now, @user.api_token.created_on)) %>
|
||
|
<% else %>
|
||
|
<%= l(:label_missing_api_access_key) %>
|
||
17 years ago
|
<% end %>
|
||
15 years ago
|
(<%= link_to l(:button_reset), {:action => 'reset_api_key'}, :method => :post %>)
|
||
|
</p>
|
||
15 years ago
|
<% end %>
|