-<h3><%= t 'user.view.user image heading' %></h3>
-<% if @this_user.image %>
- <%= image_tag url_for_file_column(@this_user, "image") %>
- <% if @user and @this_user.id == @user.id %>
- <%= button_to t('user.view.delete image'), :action => 'delete_image' %>
- <% end %>
-<% end %>
-<br />
-
-<% if @user and @this_user.id == @user.id %>
- <%= t 'user.view.upload an image' %><br />
- <%= form_tag({:action=>'upload_image'}, :multipart => true)%>
- <%= file_column_field 'user', 'image' %>
- <%= submit_tag t('user.view.add image') %>
- </form>
-<% end %>
-