Display API key in the sidebar, just below the API key heading.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3225 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang 2009-12-23 18:13:24 +00:00
parent d404d2f586
commit e26eeef837
2 changed files with 5 additions and 11 deletions

View File

@ -17,6 +17,11 @@
<% if Setting.rest_api_enabled? %>
<h4><%= l(:label_api_access_key) %></h4>
<p>
<%= link_to_function(l(:button_show), "$('api-access-key').toggle();")%>
<pre id='api-access-key' class='autoscroll'><%= @user.api_key %></pre>
</p>
<%= javascript_tag("$('api-access-key').hide();") %>
<p>
<% if @user.api_token %>
<%= l(:label_api_access_key_created_on, distance_of_time_in_words(Time.now, @user.api_token.created_on)) %>

View File

@ -52,17 +52,6 @@
<% end %>
</div>
<% if Setting.rest_api_enabled? && @user.api_token %>
<h3><%=l(:label_api_access_key) %></h3>
<div class="box">
<p>
<%= link_to_function(l(:button_show), "$('api-access-key').show();")%>
<pre id='api-access-key'><%= @user.api_key %></pre>
</p>
<%= javascript_tag("$('api-access-key').hide();") %>
</div>
<% end %>
</div>
<% end %>