X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/9a3ef885bb72adbde0b968ce67135b8f7b257f35..c55490d24ed176eebfa88a0a655462cd0b3b0d85:/app/views/user/view.html.erb diff --git a/app/views/user/view.html.erb b/app/views/user/view.html.erb index f05b26220..4fb973ef4 100644 --- a/app/views/user/view.html.erb +++ b/app/views/user/view.html.erb @@ -1,3 +1,6 @@ +<% if @this_user.image %> +<%= image_tag url_for_file_column(@this_user, "image"), :align => "right", :float => "left" %> +<% end %>

<%= h(@this_user.display_name) %> <% UserRole::ALL_ROLES.each do |role| %> <% if @user and @user.administrator? %> @@ -64,23 +67,6 @@

<%= t 'user.view.created from' %> <%= @this_user.creation_ip %>

<% end %> -

<%= t 'user.view.user image heading' %>

-<% 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 %> -
- -<% if @user and @this_user.id == @user.id %> - <%= t 'user.view.upload an image' %>
- <%= form_tag({:action=>'upload_image'}, :multipart => true)%> - <%= file_column_field 'user', 'image' %> - <%= submit_tag t('user.view.add image') %> - -<% end %> -

<%= t 'user.view.description' %>

<%= htmlize(@this_user.description) %>