app/views/admin/users/show.html.erb in spree-0.7.1 vs app/views/admin/users/show.html.erb in spree-0.8.0
- old
+ new
@@ -1,18 +1,21 @@
<h1><%= t("user_account") %></h1>
-<br/>
+
<table>
<tr>
- <td><%= t("email") %>: </td>
+ <th><%= t("email") %></th>
<td>
<%= @user.email %>
</td>
</tr>
<tr>
- <td><%= t("roles") %>: </td>
+ <th><%= t("roles") %></th>
<td>
<%= list_roles(@user) %>
</td>
</tr>
</table>
-<br/>
-<%= link_to t('edit'), edit_object_url %>
+
+<p>
+ <%= link_to_edit @user %>
+ <%= link_to t('back'), collection_url %>
+</p>