Redmine 3.4.4
This commit is contained in:
commit
64924a6376
2112 changed files with 259028 additions and 0 deletions
36
app/views/my/_sidebar.html.erb
Normal file
36
app/views/my/_sidebar.html.erb
Normal file
|
@ -0,0 +1,36 @@
|
|||
<h3><%=l(:label_my_account)%></h3>
|
||||
|
||||
<p><%=l(:field_login)%>: <strong><%= link_to_user(@user, :format => :username) %></strong><br />
|
||||
<%=l(:field_created_on)%>: <%= format_time(@user.created_on) %></p>
|
||||
|
||||
<% if @user.own_account_deletable? %>
|
||||
<p><%= link_to(l(:button_delete_my_account), {:action => 'destroy'}, :class => 'icon icon-del') %></p>
|
||||
<% end %>
|
||||
|
||||
<h4><%= l(:label_feeds_access_key) %></h4>
|
||||
|
||||
<p>
|
||||
<% if @user.rss_token %>
|
||||
<%= 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), my_rss_key_path, :method => :post %>)
|
||||
</p>
|
||||
|
||||
<% if Setting.rest_api_enabled? %>
|
||||
<h4><%= l(:label_api_access_key) %></h4>
|
||||
<div>
|
||||
<%= link_to l(:button_show), my_api_key_path, :remote => true %>
|
||||
<pre id='api-access-key' class='autoscroll'></pre>
|
||||
</div>
|
||||
<%= 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)) %>
|
||||
<% else %>
|
||||
<%= l(:label_missing_api_access_key) %>
|
||||
<% end %>
|
||||
(<%= link_to l(:button_reset), my_api_key_path, :method => :post %>)
|
||||
</p>
|
||||
<% end %>
|
Loading…
Add table
Add a link
Reference in a new issue