+<% if @this_user != nil %>
+<P>
+<b><%= t 'user.view.mapper since' %></b><%= l @this_user.creation_time %> <%= t 'user.view.ago', :time_in_words_ago => time_ago_in_words(@this_user.creation_time) %>
+</P>
+<% end %>
+
+<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 %>
+
+<h3><%= t 'user.view.description' %></h3>
+<div id="description"><%= htmlize(@this_user.description) %></div>