thingspeak/app/views/users/show.html.erb

21 lines
402 B
Plaintext
Raw Normal View History

2011-03-27 22:56:15 +02:00
<h2><%= t(:account_info) %></h2>
2011-03-30 06:08:19 +02:00
<%= link_to t(:account_edit), edit_account_path %>
<br /><br />
<table class="table_no_header">
2011-03-27 22:56:15 +02:00
<tr>
<td class="left"><%= t(:userid) %></td>
<td><%= @user.login %></td>
</tr>
<tr>
<td class="left"><%= t(:email) %></td>
<td><%= @user.email %></td>
</tr>
<tr>
<td class="left"><%= t(:time_zone) %></td>
<td><%= @user.time_zone %></td>
</tr>
</table>